/* assets/css/auth.css */
/* Estilos específicos para el módulo de autenticación */

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.logo-container {
    text-align: center;
    margin-bottom: 24px;
}

.logo {
    max-width: 180px;
    height: auto;
}

h1 {
    font-size: 28px;
    color: #1f2937;
    text-align: center;
    margin-bottom: 8px;
}

.subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255,105,180,0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #4b5563;
}

.forgot-link {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: #6b7280;
}

.auth-footer a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive para tablets y desktop */
@media (min-width: 768px) {
    .auth-card {
        padding: 48px 40px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .form-group input {
        font-size: 15px;
    }
}