@import url("../css/style_home.css");

/*ESTILIZA O CONTAINER DE INPUT*/

#form_container {

    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    /*gap: 32px;*/
    justify-content: center;
    /*padding: 20px;*/




}

#container-headeer {

    display: flex;
    font-weight: 900;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 5px;
    font-size: 20px;
    color: var(--color-primary-1);
    text-align: center;


}

#form-desciption {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding-top: 5px;
    position: relative;
    color: #ff0000;

}


#form-forgot {
    display: block;
    justify-content: space-between;
    flex-direction: column;
    gap: 32px;
}


/*ESTILIZA O TÍTULO RECUPERAR SENHA*/

.form-label {
    display: flex;
    margin-top: 19px;
    font-size: 1.3rem;
    color: var(--color-texto-2);
    font-weight: 700;
}

.input-field {
    display: flex;
    align-items: center;
    margin-top: 10px;
    /*background-color: var(--color-primary-2);*/
    border-radius: 9px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);

}

#btn-password,
#confirm-btn-password {

    cursor: pointer;
}

.input-field i {
    display: flex;
    font-size: 1.3rem;
    align-items: center;
    margin-left: 10px;
    width: 40px;
    height: 30px;
    color: var(--color-primary-2);


}


.form-control {
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    border: none;

}


.form-control:focus {
    outline: none;
}

.input-box .input-field:focus-within {
    outline: 3px solid var(--color-primary-1);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 1000px white inset !important;
    color: var(--color-primary-1);

}

/*ESTILIZA O BOTÃO ENVIAR LINK PARA RECUPERAR SENHA*/
#form-forgot {
    display: flex;
    justify-content: center;
    margin: 0;

}


.btn-newSenha {
    display: flex;
    justify-content: center;
    margin-top: 20px;

    background-color: var(--color-primary-2);
    border: none;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-texto-1);

    text-decoration: none;

    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);

    &:hover {
        background-color: var(--color-primary-1);

    }
}

/*TOAST  = EMITIR ALERT NA TELA

.toast {
    position: fixed;
    text-align: center;
    top: 50px;
    left: 90%;
    transform: translateX(-50%) translateY(-20px);
    padding: 12px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.5s ease;
    font-weight: bold;
    z-index: 9999;
    color: #fff;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: #4CAF50;
}

.toast.error {
    background: #F44336;
}

.toast.warning {
    background: #FF9800;
}

.toast i {
    margin-right: 8px;
}

/*TOAST  = EMITIR ALERT NA TELA */


/* ESTILO RECUPERAR SENHA MOBILE*/
@media screen and (max-width: 1030px) {
    #form_container {
        width: 100%;
        margin-bottom: 99px;
        padding: 32px;
        
        


    }

    #container-headeer {
        display: flex;
        margin-top: 20px;

    }

    .btn-newSenha {
        display: inline-block;


    }

    #form_container {
        display: block;
        margin: 0;
        padding: 0 40px 0;
    }

    #input-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .container-img-footer {
        display: flex;


        padding-top: 30vh;
        overflow: hidden;
    }
}