/* Login Page */
.login-background {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;

    border-radius: var(--border-radius-xs, 16px);
    background: var(--color-essence-ivory, #FFF);
    box-shadow: var(--shadow-level-3);
}

.login.recovery {
    padding: var(--padding-huge, 64px) var(--padding-md, 24px) var(--padding-md, 24px) var(--padding-md, 24px);
}

.login .header {
    display: flex;
    flex-direction: column;
    gap: var(--margin-xs, 16px);
    align-items: center;
    text-align: center;
}

.login .header-brand {
    max-width: 170px;
}

.login .form {
    display: flex;
    flex-direction: column;
    gap: var(--margin-xs, 16px);
    align-self: stretch;
}

.form .input-label.password {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.input-sufix .password {
    cursor: pointer;
}

.legal-text {
    color: var(--color-neutral-pure, #A8A8A8);
    text-align: center;
}

/* Recovery Page */   
.recovery-background {
    background: linear-gradient(135deg, var(--color-secondary-soft) 0%, var(--color-secondary-pure) 50%, var(--color-secondary-dark) 100%);
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .center-container {
        width: 90%;
    }
}

