﻿/* ====================================
   Auth Pages Styles - Simple & Clean
   ==================================== */

/* Main Container */
.auth-page {
    min-height: calc(100vh - 180px);
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
}

/* Layout Grid */
.auth-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Section - Info */
.auth-info {
    color: #ffffff;
    padding: 20px;
}

.auth-info h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.auth-info > p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.auth-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-highlight {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.auth-highlight i {
    font-size: 1.5rem;
    color: #00d4ff;
    flex-shrink: 0;
}

.auth-highlight strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.auth-highlight div div {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Right Section - Card */
.auth-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-card header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0094ff);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.auth-card h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.auth-card header p {
    color: #666666;
    font-size: 0.95rem;
}

/* Alerts */
.auth-alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.auth-alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.auth-alert.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef5350;
}

.auth-alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

/* Form */
.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-field {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #f5f5f5;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #00d4ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.input-field::placeholder {
    color: #999999;
}

/* Buttons */
.btn-primary-login {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0094ff);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-primary-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Divider */
.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider span {
    background: #ffffff;
    padding: 0 15px;
    color: #999999;
    position: relative;
    z-index: 1;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

/* Discord Button */
.btn-discord-login {
    width: 100%;
    height: 50px;
    background: #5865f2;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discord-login:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

/* Terms */
.auth-terms {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.auth-terms p {
    color: #666666;
    font-size: 0.85rem;
    margin: 0 0 10px 0;
}

.auth-terms ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-terms li {
    color: #666666;
    font-size: 0.85rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-terms li i {
    color: #00d4ff;
    font-size: 0.8rem;
}

/* Footer */
.auth-footer {
    margin-top: 25px;
    text-align: center;
    color: #666666;
    font-size: 0.95rem;
}

.auth-footer a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .auth-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .auth-info {
        text-align: center;
    }
    
    .auth-info h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .auth-page {
        padding: 40px 15px;
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-info h1 {
        font-size: 1.8rem;
    }
}
