html {
    max-width: 420px;
    margin: auto;
}
nav {
    color: #003994 !important;
}
nav div img {
    margin: 1rem 0;
}
label {
    color: #003994 !important;
    font-weight: 500;
}
label i{
    font-weight: 600 !important;
}

.fa-right-from-bracket, .fa-chevron-left, .fa-eye, .fa-eye-slash {
    cursor: pointer;
}

input.cpf,
input.senha {
    width: 100% !important;
    outline: none !important;
    border: none !important;
    border-bottom: solid 2px!important;
    border-color: #ccc !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 4rem 0 0.2rem !important;
    color: #003994 !important;
    margin-bottom: 0.5rem;
}
input.cpf.danger,
input.senha.danger {
    border-color: #dc3545 !important;
}

input.cpf::placeholder,
input.senha::placeholder {
    color: #ddd !important;
    opacity: 1 !important;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container span {
    color: #ddd !important;
    position: absolute;
    right: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

label.input_alert {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    color: #dc3545;
}

button.btn_entrar {
    background-color: #ddd;
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 1rem 1.6rem;
}

button.btn_entrar.active {
    animation: color-up 1s;
    background-color: #003994;
}

button.recuperar_senha {
    margin-top: 0.5rem;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    font-weight: 500;
    color: #003994;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* TRANSIÇÃO PASSOS LOGIN */
.step-transition {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.step-content.active {
    position: relative;
	animation: scale-up 2s;
}
.step-content.inactive {
    position: relative;
	animation: scale-down 2s;
}

@keyframes scale-up {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scale-down {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}

@keyframes color-up {
    0% {
        background-color: #ddd;
    }
    100% {
        background-color: #003994;
    }
}
