/* resources/css/auth.css */
:root {
    --purple-50: #f5f3ff;
    --purple-100: #ede9fe;
    --purple-200: #ddd6fe;
    --purple-300: #c4b5fd;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --purple-700: #6d28d9;
    --purple-800: #5b21b6;
    --purple-900: #4c1d95;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Auth Container */
.auth-container {
    width: 100%;
    max-width: 1200px;
}

.auth-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Welcome Page Specific */
.welcome-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .welcome-grid {
        flex-direction: row;
    }
}

.welcome-content {
    flex: 1;
    padding: 2.5rem;
    background: white;
}

.welcome-visual {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .welcome-visual {
        min-height: auto;
        width: 45%;
    }
}

/* Brand Icon */
.brand-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.3);
}

.brand-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Typography */
h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: #f5f3ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-600);
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: white;
    box-shadow: 0 4px 12px -2px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -2px rgba(124, 58, 237, 0.5);
}

.btn-outline {
    border: 2px solid var(--purple-600);
    color: var(--purple-600);
}

.btn-outline:hover {
    background: var(--purple-50);
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-600);
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Navigation */
.auth-nav {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
    z-index: 50;
}

.auth-nav-link {
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.2s;
}

.auth-nav-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-content {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}