/* Fondo general */
.reset-container {
    max-width: 450px;
    margin: 60px auto;
    background: #F1EFED;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
}

/* Titulo */
.reset-container h2 {
    color: #151515;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Inputs */
.reset-container input[type="email"],
.reset-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

/* Botón */
.reset-container button {
    width: 100%;
    background: #F37021;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-top: 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.reset-container button:hover {
    background: #d85e1c;
}

/* Mensajes */
.alert {
    background: #fff3cd;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 4px solid #F37021;
    margin-bottom: 15px;
    color: #775c00;
}

/* Texto de advertencia */
.warning-text {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-align: center;
}
