/* ============================================
   CONTENEDOR PRINCIPAL DEL LOGIN
============================================ */
.login-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    padding: 20px;
}

/* ============================================
   LOGO
============================================ */
.logo-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* ============================================
   TÍTULO
============================================ */
.login-container h2 {
    color: var(--color-texto);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* ============================================
   FORMULARIO
============================================ */
.login-container form {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ============================================
   INPUT GROUP
============================================ */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 0.95rem;
    color: var(--color-texto);
}

.input-group input {
    padding: 12px;
    border: 1px solid var(--color-borde);
    border-radius: 6px;
    font-size: 1rem;
}

/* ============================================
   BOTÓN LOGIN
============================================ */
.btn-login {
    background: var(--color-primario);
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.btn-login:hover {
    background: var(--color-primario-hover);
}

/* ============================================
   TEXTO DE REGISTRO
============================================ */
.register-text {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
}

.register-text a {
    color: var(--color-primario);
    font-weight: 600;
    text-decoration: none;
}
