* {
    box-sizing: border-box;
}

:root {
    --lfm-passw-border-color: black;
    --lfm-email-border-color: black;
}

p {
    margin-right: 5px;
    margin-left: 5px;
}

.lfm-input-wrapper {
    margin: 2px;
    padding: 3px;
    display: flex;
}

.lfm-link {
    color: #3e4961;
    cursor: pointer;
}

.lfm-form-wrapper {
    display: flex;
    margin: auto;
    max-width: 600px;
    justify-content: center;
    flex-direction: column;
}

.lfm-flex-container-vertical {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.lfm-flex-form-row {
    display: flex;
    justify-content: center;
    flex: 1 1 100%;
}

.lfm-text-center {
    text-align: center;
}

#lfm-email,
#lfm-passw {
    height: 35px;
    text-align: center;
    font-size: 1.1rem;
    flex-basis: 100%;
    justify-content: center;
    border: 2px solid black;
}

#lfm-email:focus,
#lfm-passw:focus {
    transition: border 0.7s ease;
    outline: none;
    border: 2px solid black;
}

#lfm-email:focus {
    border: 2px solid var(--lfm-email-border-color);
}

#lfm-passw:focus {
    border: 2px solid var(--lfm-passw-border-color);
}

#lfm-render-area {
    margin-top: 5vw;
    min-height: 350px;
}

#lfm-submit {
    height: 35px;
    font-size: 1.1rem;
    z-index: 100;
    transition: transform 0.4s;
    cursor: pointer;
}