/* CONTENEDOR GENERAL */
.restablecer-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 25px;
}

/* TÍTULO */
.restablecer-titulo {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

/* FORMULARIO */
.restablecer-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* GRUPOS */
.form-grupo {
    display: flex;
    flex-direction: column;
}

.form-grupo label {
    font-weight: 600;
    margin-bottom: 5px;
}

.form-grupo input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

/* BOTÓN GUARDAR */
.btn-guardar {
    margin-top: 10px;
    padding: 12px;
    background-color: #0069d9;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-guardar:hover {
    background-color: #0053b3;
}

/* ALERTAS */
.alerta-error {
    background-color: #fbeaea;
    border-left: 6px solid #d9534f;
    padding: 12px;
    margin-bottom: 15px;
    color: #b52b27;
    font-weight: bold;
    border-radius: 4px;
}
