.login-body {
    margin: 0;
}

.content {
    top: 0;
    bottom: 0;
    position: absolute;
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex: 1;
    width: 100%;
    text-align: center;
}

.login {
    background-color: var(--off-white) !important;
    height: 100vh;
    margin: 0px;
    background-image: url("../assets/boopt/icone_branco.svg");
    background-repeat: no-repeat;
    background-position: bottom -150px right -150px;
    background-size: 500px;
}

.login-container {
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}

.login-form {
    max-width: 400px;
}

.login-form h1 {
    text-align: start;
}

.user-input,
.password-input {
    align-items: flex-start;
    width: 100%;
    margin-top: 1rem;
}

.user-input input,
.password-input input {
    width: 100%;
    padding-left: 34px !important;
    box-sizing: border-box;
}

.password-field,
.user-field {
    width: 100%;
    position: relative;
}

#password-eye {
    right: 20px;
    height: 20px;
    cursor: pointer;

    &:active {
        top: 1px;
    }
}

.fluent--lock-closed-24-filled,
.fluent--person-24-filled {
    left: 0;
    height: 20px;
}

.forgot-password {
    align-self: center;

    a {
        text-decoration: none;
        right: -18px;

        &:hover {
            text-decoration: underline;
        }
    }
}

.primeiro-acesso {
    align-items: flex-start;
    text-align: start;

    p {
        margin: 0;
    }

    strong {
        color: var(--azul-sv);
    }
}

#login-feedback {
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    text-align: start;
    font-size: 14px;
    margin-top: 1rem;

    * {
        margin: 0;
        font-weight: 500;
    }

    h1 {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 0.5rem;
    }

    &.status-error {
        background-color: #FFE9DE;
        border: 1px solid var(--laranja-boopt);

        h1 {
            color: var(--laranja-boopt);
        }
    }

    &.status-info {
        background-color: #dedfff;
        border: 1px solid var(--azul-sv);

        h1 {
            color: var(--azul-sv);
        }
    }
}