/* CONTENEDOR GENERAL */
.login-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 25px;
}

/* TÍTULO */
.login-titulo {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
}

/* FORMULARIO */
.login-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;
}

/* PASSWORD */
.password-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-mostrar {
    padding: 6px 10px;
    font-size: 13px;
    background-color: #e7e7e7;
    border: 1px solid #bbb;
    border-radius: 5px;
    cursor: pointer;
}

.btn-mostrar:hover {
    background-color: #dcdcdc;
}

/* BOTÓN INGRESAR */
.btn-ingresar {
    margin-top: 10px;
    padding: 12px;
    background-color: #0069d9;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.btn-ingresar:hover {
    background-color: #0053b3;
}

/* LINK OLVIDÉ */
.link-olvide {
    display: block;
    margin-top: 10px;
    color: #b52b27;
    font-weight: bold;
    text-align: center;
}

/* ALERTAS */
.alerta-error {
    background-color: #ffdddd;
    border-left: 6px solid #f44336;
    padding: 12px;
    margin-bottom: 15px;
    color: #a70000;
    font-weight: bold;
    border-radius: 4px;
}
