/* Contenedor centrado */
.reset-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56.55vh;
    padding: 20px;
    background-color: #f0f2f5;
}

/* Sección principal */
.reset-section {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Contenedor interno */
.reset-section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Título */
.reset-section h1 {
    text-align: center;
    font-size: 24px;
    color: #333;
}

/* Mensajes */
.message {
    color: #28a745;
    text-align: center;
    font-size: 14px;
}

.error {
    color: #dc3545;
    text-align: center;
    font-size: 14px;
}

/* Formulario */
.reset-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reset-form label {
    font-size: 14px;
    color: #444;
}

.reset-form input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reset-form button {
    padding: 10px;
    font-size: 14px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reset-form button:hover {
    background-color: #0056b3;
}

/* Enlace debajo del formulario */
.reset-section a {
    text-decoration: none;
    color: #007BFF;
    font-size: 14px;
}

.reset-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 500px) {
    .reset-section {
        padding: 20px;
        width: 100%;
    }
}
