/* Giriş Yap Sayfası Stilleri */
.login-main {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
}

.login-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.login-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 3rem;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.login-buttons {
    margin-bottom: 2rem;
}

/* Şık login uyarısı */
.login-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    animation: loginAlertIn 180ms ease-out;
}

.login-alert.error {
    background: rgba(255, 82, 82, 0.12);
    border: 1px solid rgba(255, 82, 82, 0.35);
    color: #ffb4b4;
}

.login-alert.success {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: #a7f3d0;
}

.login-alert i {
    margin-top: 2px;
    font-size: 1.1rem;
}

@keyframes loginAlertIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* E-posta ile giriş formu */
.email-login-form {
    max-width: 520px;
    margin: 0 auto;
}

.email-login-form .form-group {
    margin-bottom: 1rem;
}

.email-login-form .form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: #ffffff;
    color: #111827;
}

.email-login-form .form-input::placeholder {
    color: #6b7280;
}

.email-login-form .email-submit {
    display: inline-block;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    color: var(--text-white);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

.email-login-form .email-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.45);
}

.login-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.google-btn {
    background: var(--text-white);
    color: #333333;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    color: #333333;
    text-decoration: none;
}

.facebook-btn {
    background: #1877f2;
    color: var(--text-white);
}

.facebook-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.email-btn {
    background: var(--text-white);
    color: #333333;
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.separator {
    position: relative;
    margin: 2rem 0;
    text-align: center;
}

.separator::before,
.separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.separator::before {
    left: 0;
}

.separator::after {
    right: 0;
}

.separator-text {
    background: var(--bg-dark);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .login-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .login-buttons {
        margin-bottom: 1.5rem;
    }
    
    .login-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .login-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .login-content {
        padding: 0 1rem;
    }
    
    .login-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
