/* Estilo da página de recuperação de senha */

body {
    background-color: #f5eee8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.forgot-text-page {
    color: #3c7d38;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
}

.forgot-box {
    background-color: #3c7d38;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 200px;
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-forgot {
    margin-top: 15px;
}

.email-label {
    font-weight: bold;
    color: #f5eee8;
    font-size: 16px;
    padding-top: 10px;
}

.texto-box{
    line-height: 0.3;
}

.texto-box h2{
    color: white;
    display: flex;
    justify-self: flex-start;
}

.texto-box label{
    margin-top: 0px;
    color: white;
    display: flex;
    justify-self: flex-start;
    font-size: 13px;
}

.email-input {
    align-items: center;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f5eee8;
    color: #2e433a;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    margin-top: 20px;
}

.button-forgot-page {
    width: 100%;
    padding: 10px;
    color:#f5eee8;
    background-color: transparent;
    border: 3px solid #f5eee8;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    margin-top: 20px;
    margin-bottom: 10px;
}

.button-forgot-page:hover {
    background-color: #5fa35a;
    border: 3px solid #5fa35a;
}

.return-login {
    padding-top: 5px;
    font-size: 14px;
}

.return-login p {
    
    color: #f5eee8;
    padding-top: 0px;
    margin-top: 2px;
}

.return-login p:hover {
    color: #5fa35a;
}

.return-login a {
    font-size: 15px;
    color: #f5eee8;
    padding-top: 0px;
    text-decoration: none;
}

.return-login a:hover {
    color: #5fa35a;
}

/*---------- MENSAGEM DE ERRO ----------*/

.erro {
    background-color: #ffdddd;
    color: #a94442;
    border: 1px solid #a94442;
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
    transition: opacity 0.3s ease;
    max-height: 50px;
    overflow-y: auto;
}

/* -------------------- FOOTER -------------------- */
.footer {
    text-align: center;
    color: #3c7d38;
    font-size: 13px !important;
    margin-top: 25px;
    line-height: 0.1;
    padding:  10px;

}


/* Ilustrações com caminho corrigido */
.illustration-left-down {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
    z-index: -1;
    bottom: -100px;
    left: -50px;
    background-image: url('./assets/leftdown.png');
}

.illustration-right-top {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease-out;
    z-index: -1;
    top: -100px;
    right: -50px;
    background-image: url('./assets/righttop.png');
}

.illustration-left-top1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease-out;
    z-index: -1;
    top: -100px;
    left: -50px;
    background-image: url('./assets/lefttop1.png');
}

.illustration-left-top2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease-out;
    z-index: -1;
    top: -100px;
    left: -50px;
    background-image: url('./assets/lefttop2.png');
}

.illustration-right-down1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
    z-index: -1;
    bottom: -50px;
    right: -50px;
    background-image: url('./assets/rightdown1.png');
}

.illustration-right-down2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-out;
    z-index: -1;
    bottom: -50px;
    right: -50px;
    background-image: url('./assets/rightdown2.png');
}
