/* ==========================================
   AUTH PAGE STYLING
   ========================================== */

.auth-body {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(21, 29, 63, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: linear-gradient(135deg, #151d3f 0%, #1a2350 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo img {
    max-height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
}

/* Tab Navigation */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #b3b3b3;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.auth-tab:hover {
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.auth-tab.active {
    background: linear-gradient(135deg, #00f0ff 0%, #07c2b2 100%);
    color: white;
    border-color: #00f0ff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* Tab Content */
.auth-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00f0ff 0%, #fbb115 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 25px;
}

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

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

.form-control {
    background: #1a2350 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e8e8f0 !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control:focus {
    border-color: #00f0ff !important;
    background: rgba(0, 240, 255, 0.05) !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2) !important;
}

.form-control::placeholder {
    color: #6b7280 !important;
}

/* Button Styling */
.btn-gradient {
    background: linear-gradient(135deg, #00f0ff 0%, #07c2b2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
    color: white;
}

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

/* Demo Section */
.demo-section {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.demo-title {
    font-size: 12px;
    color: #00f0ff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.demo-btn {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    width: 48%;
    font-weight: 500;
}

.demo-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: #00f0ff;
}

.demo-btn i {
    margin-right: 5px;
}

/* Back Link */
.back-link {
    color: #00f0ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link:hover {
    color: #fbb115;
    transform: translateX(-5px);
}

.back-link i {
    margin-right: 5px;
}

/* Terms Text */
.terms-text {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 15px;
}

.terms-text a {
    color: #00f0ff;
    text-decoration: none;
    font-weight: 500;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 576px) {
    .auth-card {
        padding: 30px 20px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-tabs {
        flex-direction: column;
    }

    .auth-tab {
        justify-content: center;
    }

    .demo-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8px;
    }
}
