/* Login Page Styles */

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    position: relative;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.2), transparent 50%);
    pointer-events: none;
}

.login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 450px;
}

.login-box {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--gray-text);
}

.login-header a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.login-header a:hover {
    text-decoration: underline;
}

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

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

.password-input {
    position: relative;
}

.password-input input {
    padding-right: 3rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.eye-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-text);
}

.toggle-password:hover .eye-icon {
    color: var(--secondary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

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

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.social-login {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-login:hover {
    border-color: var(--gray-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-login svg {
    width: 20px;
    height: 20px;
}

/* Verification Box */
.verification-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.verification-info {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.verification-info p:first-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.5rem;
}

.verification-hint {
    font-size: 0.9rem;
    color: #15803d;
    line-height: 1.5;
}

.btn-outline {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #374151;
}

.btn-outline:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* E-posta OTP (6 hane) */
.otp-input-wrap {
    margin-bottom: 1rem;
}
.otp-input-wrap label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary-color, #1e293b);
    margin-bottom: 0.5rem;
}
.otp-input {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    padding: 0.85rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-variant-numeric: tabular-nums;
}
.otp-input:focus {
    outline: none;
    border-color: var(--primary-color, #dc2626);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 640px) {
    .login-box {
        padding: 2rem 1.5rem;
    }

    .login-header h1 {
        font-size: 1.7rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

