/* Giris / Kayit sayfalari */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body.auth-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #0c1222;
    position: relative;
    overflow: hidden;
}

body.auth-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(139, 92, 246, 0.3), transparent);
    pointer-events: none;
}

.auth-page .login-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 44px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-page .login-card h2 {
    color: #0f172a;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 28px;
    text-align: center;
}

.auth-page .form-control {
    border-radius: 12px;
    padding: 13px 16px;
    border: 1px solid #e2e8f0;
}

.auth-page .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.auth-page .btn-login {
    background: linear-gradient(135deg, #2563eb, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    width: 100%;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.auth-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.auth-page .input-group-text {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #64748b;
}

.auth-page .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

.auth-page .register-link a {
    color: #2563eb;
    font-weight: 600;
}

.auth-page .text-logo-lg {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-page .lang-switch-btn {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #2563eb !important;
    border: 1px solid rgba(59, 130, 246, 0.25) !important;
    border-radius: 8px !important;
}
