﻿/* [CONTAINER] - Modal para esqueci senha na view AlterarSenha */
#layout-modal-esquecisenha {
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.800) !important;
    position: fixed;
}

.container-modal-esquecisenha {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

/* Box do modal */
.box-modal-esquecisenha {
    width: 350px;
    height: 220px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 5px;
    font-family: var(--fonte);
}

.box-modal-esquecisenha-conteudo {
    margin: 10px;
}

/* Modal Nav com titulo */
.box-modal-esquecisenha-nav {
    margin-bottom: 10px;
    font-weight: 100;
    color: black;
}

.box-modal-esquecisenha-nav h3 {
    font-weight: 500;
    color: gray;
}

/* Modal Body com conteudo */
.box-modal-esquecisenha-body {    
    font-size: 1em;
    margin-bottom: 20px;
    text-align: left;
}

.box-modal-esquecisenha-body h6 {
    font-weight: 300;
    font-size: .97em;
    color: gray;
}

/* Buttons do modal */
.box-modal-esquecisenha-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.box-modal-esquecisenha-btns button {
    padding: 10px 20px 10px 20px;
    background-color: orange;
    transition: 0.5s;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.box-modal-esquecisenha-btns button:hover {
    background-color: darkorange;
    transition: 0.5s;
}