/* ============================================
   LOGIN IABAIRES - CSS
   Tema Oscuro Minimalista | Violeta/Rosa
   ============================================ */

:root {
    /* Colores Principales */
    --primary-color: #7c3aed;      /* Violeta */
    --secondary-color: #ec4899;    /* Rosa */
    --success-color: #10b981;      /* Verde */
    --danger-color: #ef4444;       /* Rojo */
    --warning-color: #f59e0b;      /* Naranja */
    
    /* Fondos */
    --bg-primary: #0f0f23;         /* Fondo principal */
    --bg-secondary: #1a1a2e;       /* Fondo secundario */
    --bg-card: #16213e;            /* Tarjetas */
    --bg-hover: #1e2847;           /* Hover */
    
    /* Texto */
    --text-primary: #ffffff;       /* Texto principal */
    --text-secondary: #9ca3af;     /* Texto secundario */
    --text-tertiary: #6b7280;      /* Texto terciario */
    
    /* Bordes */
    --border-color: #374151;       /* Bordes */
    
    /* Espaciado */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Bordes redondeados */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    position: relative;
}

/* Gradiente de fondo sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom, rgba(236, 72, 153, 0.15), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.container {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) 1;
    width: 100%;
    max-width: 450px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ============================================
   LOGO Y TÍTULO
   ============================================ */
.logo {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ============================================
   TABS
   ============================================ */
.login-tabs {
    display: flex;
    gap: var(--spacing);
    margin-bottom: 2rem;
}

.login-tab {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.login-tab:hover {
    background: var(--bg-hover);
    border-color: var(--primary-color);
}

.login-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

/* ============================================
   FORMULARIO
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-card);
    color: var(--text-primary);
}

input::placeholder {
    color: var(--text-tertiary);
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-hover);
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   TOGGLE MODE
   ============================================ */
.toggle-mode {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.toggle-mode a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.toggle-mode a:hover {
    text-decoration: underline;
}

/* ============================================
   LOADING
   ============================================ */
.loading {
    display: none;
    margin: 1rem 0;
    color: var(--primary-color);
}

.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   MENSAJES
   ============================================ */
.message {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: var(--radius);
    display: none;
    border: 1px solid transparent;
}

.message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border-color: rgba(239, 68, 68, 0.2);
}

.message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-color: rgba(16, 185, 129, 0.2);
}

/* ============================================
   FORGOT PASSWORD
   ============================================ */
.forgot-password {
    text-align: right;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.forgot-password a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* ============================================
   PASSWORD TOGGLE
   ============================================ */
.password-container {
    position: relative;
}

.password-container input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary-color);
}

/* ============================================
   CHECKBOX (Remember Me)
   ============================================ */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-container label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ============================================
   CAPTCHA CONTAINER
   ============================================ */
#captcha-container {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    input, .btn {
        padding: 0.875rem;
    }
    
    .login-tabs {
        flex-direction: column;
    }
}
