/* RESTORE (usa los mismos estilos de REGISTER) */
.restore-section {
    @extend .register-section;
}

.restore-card {
    @extend .register-card;
}

.restore-footer {
    text-align: center;
    margin-top: 20px;
}

.restore-footer .register-link {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.restore-footer .register-link:hover {
    text-decoration: underline;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
}

.btnEnviar {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Playwrite DE Grund", cursive;
    font-size: large;
    color: #fff;
    background-color: #6ee7b7;
    text-transform: none;
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05), 
                0 0 0 1px rgba(0, 0, 0, 0.08);
}

.btnEnviar:hover{
    background-color: #f8f9f9;
    color: #6ee7b7;
}

.restore-container {
    display: flex;
    justify-content: center;

}