  @media (max-width: 768px) {
    .auth-container {
        min-height: 100vh;
        height: auto;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
    }

    .panel {
        padding: 4rem 1.5rem 2rem !important;
        justify-content: flex-start;
    }

    .form-title {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }


    .submit-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
        .input-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

            .input-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text);
            font-weight: 600;
            font-size: 1.875rem;
        }

        .input-field {
            width: 100%;
            padding: 0.875rem 1.25rem;
            border: 2px solid var(--border);
            border-radius: 0.75rem;
            background: #F9FAFB;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .input-field:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .input-field::placeholder {
            color: #9CA3AF;
        }

        /* Mobile responsive için input field stilleri */
        @media (max-width: 768px) {
            .input-group {
                margin-bottom: 1rem;
            }

            .input-field {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
        }
    .divider {
        margin: 1.5rem 0;
    }

    .social-auth {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }

    .footer-links {
        position: relative;
        margin: 2rem 0 0;
        padding-bottom: 4rem;
    }

    .mobile-switcher {
        bottom: 0.5rem;
        padding: 0.5rem;
        max-width: 95%;
    }

    .form-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Arka plan bloblarını küçült */
    .gradient-blob {
        filter: blur(40px);
        opacity: 0.15;
    }
    
    .blob-1, .blob-2, .blob-3 {
        width: 250px;
        height: 250px;
    }
}
        :root {
            --primary: #4F46E5;
            --secondary: #6366F1;
            --background: #ffffff;
            --text: #1F2937;
            --border: #E5E7EB;
            --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #F8FAFC;
            position: relative;
        }

        .brand-logo {
            position: absolute;
            top: 2rem;
            left: 2rem;
            width: 120px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            z-index: 10;
        }

        .auth-container {
            display: flex;
            width: 1000px;
            max-width: 95%;
            height: 640px;
            border-radius: 1.5rem;
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow);
            background: white;
            margin-top: 4rem;
        }

        .panel {
            flex: 1;
            padding: 4rem;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: absolute;
            width: 50%;
            height: 100%;
            border-radius:4%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .login-panel {
            background: var(--background);
            right: 0;
            z-index: 2;
        }

        .register-panel {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            left: 0;
        }

        .switch-content {
            position: absolute;
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .switch-text-group {
            margin-bottom: 2rem;
        }

        .switch-title {
            font-size: 1.75rem;
            color: white;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .switch-description {
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem;
        }

        .switch-button {
            padding: 0.75rem 2rem;
            background: rgba(255, 255, 255, 0.15);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            border-radius: 0.75rem;
            color: white;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(6px);
        }

        .switch-button:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .auth-form {
            max-width: 360px;
            width: 100%;
            margin: 0 auto;
        }

        .form-title {
            font-size: 1.875rem;
            margin-bottom: 2rem;
            color: var(--text);
            font-weight: 700;
        }
              .input-group {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .input-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text);
            font-weight: 500;
            font-size: 0.875rem;
        }

        .input-field {
            width: 100%;
            padding: 0.875rem 1.25rem;
            border: 2px solid var(--border);
            border-radius: 0.75rem;
            background: #F9FAFB;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .input-field:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .input-field::placeholder {
            color: #9CA3AF;
        }

        /* Mobile responsive için input field stilleri */
        @media (max-width: 768px) {
            .input-group {
                margin-bottom: 1rem;
            }

            .input-field {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }
        }
        .submit-btn {
            width: 100%;
            padding: 0.875rem;
            background: var(--primary);
            border: none;
            border-radius: 0.75rem;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            opacity: 0.95;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
        }

        .forgot-password {
            text-align: right;
            margin: 1.25rem 0;
        }

        .forgot-password a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: var(--primary);
        }

     

        .divider {
            margin: 1.75rem 0;
            display: flex;
            align-items: center;
            color: #6B7280;
            font-size: 0.75rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
            margin: 0 1rem;
        }

     .social-auth {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 24px;
}

.social-btn {
  padding: 14px 32px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 16px;
  font-weight: 500;
  color: #444;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  min-width: 180px;
  justify-content: center;
}

.social-btn:hover {
  background: #f8f8f8;
  border-color: #d0d0d0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #000;
}

.social-btn i {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.social-btn:hover i {
  transform: scale(1.1);
}

/* Google Buton */
.social-btn .fa-google {
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Facebook Buton */
.social-btn .fa-facebook {
  color: #1877f2;
}

/* Responsive */
@media (max-width: 1024px) {
  .social-auth {
    padding: 20px;
  }
  
  .social-btn {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .social-auth {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }
  
  .social-btn {
    flex: 1;
    min-width: 140px;
    padding: 10px 16px;
  }
}

        .footer-links {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1.5rem;
            font-size: 0.75rem;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .auth-container.active .login-panel {
            transform: translateX(-100%);
        }

        .auth-container.active .register-panel {
            transform: translateX(100%);
        }

        .register-form {
            display: none;
        }

        .auth-container.active .login-form {
            display: none;
        }

        .auth-container.active .register-form {
            display: block;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(4px);
            z-index: 1000;
        }

        .reset-modal {
            background: white;
            padding: 2.5rem;
            border-radius: 1.5rem;
            width: 100%;
            max-width: 480px;
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: var(--shadow);
        }

        .reset-modal.active {
            transform: scale(1);
            opacity: 1;
        }

        .reset-success {
            display: none;
            text-align: center;
        }

        /* Mobile Optimizations */
        @media (max-width: 768px) {
            .brand-logo {
                left: 50%;
                transform: translateX(-50%);
                top: 1rem;
                width: 100px;
            }
            
            .auth-container {
                height: auto;
                min-height: 100vh;
                margin: 0;
                border-radius: 0;
                box-shadow: none;
            }

            .panel {
                position: relative !important;
                width: 100% !important;
                height: auto !important;
                transform: none !important;
                padding: 5rem 1.5rem 4rem !important;
            }

            .register-panel {
                display: none;
            }

            .switch-content {
                display: none;
            }

         .mobile-switcher {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border: 1px solid rgba(224, 231, 255, 0.6);
    max-width: 90%;
}

.form-tab {
    padding: 0.8rem 2rem;
    border: none;
    background: transparent;
    color: #6B7280;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    white-space: nowrap;
}

.form-tab.active {
    color: #4F46E5;
}

.form-tab::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4F46E5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-tab.active::after {
    width: 70%;
}

.form-tab:not(.active):hover {
    color: #4F46E5;
    transform: translateY(-1px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .mobile-switcher {
        bottom: 1rem;
        padding: 0.5rem;
    }
    
    .form-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

            .auth-form {
                display: none;
            }

            .auth-form.active {
                display: block !important;
            }

            .form-title {
                font-size: 1.5rem;
                text-align: center;
                margin-bottom: 1.5rem;
            }

            .input-field {
                padding: 0.75rem 1rem;
            }

            .submit-btn {
                padding: 0.75rem;
            }

            .social-auth {
                flex-direction: column;
            }

            .social-btn {
                justify-content: center;
            }

            .footer-links {
                position: relative;
                bottom: auto;
                margin: 2rem 0 0;
                justify-content: center;
            }
        }

        @media (min-width: 769px) {
            .mobile-switcher {
                display: none;
            }
        }/* Password Reset Modal Stilleri */
.modal-overlay {
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.25);
}

.reset-modal {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-title {
    font-size: 1.75rem;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.modal-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4F46E5 0%, #6366F1 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.email-display {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.email-display:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.email-text {
    flex: 1;
    color: #1f2937;
    font-weight: 500;
    word-break: break-word;
}

.change-email-btn {
    background: rgba(79, 70, 229, 0.1);
    color: #4F46E5;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.change-email-btn:hover {
    background: rgba(79, 70, 229, 0.2);
}

.email-input-group {
    margin-bottom: 1.5rem;
    display: none;
}

.email-input-group input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.email-input-group input:focus {
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 4%;
    border: 2px solid transparent;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.modal-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.modal-btn.secondary {
    background: white;
    color: #4B5563;
    border-color: #e5e7eb;
}

.modal-btn.secondary:hover {
    background: #f8fafc;
}

/* Success State */
.reset-success {
    text-align: center;
    padding: 2rem 0;
}

.check-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    animation: checkBounce 0.6s ease;
}

@keyframes checkBounce {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-text {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.5;
}

.success-email {
    font-weight: 600;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .reset-modal {
        padding: 1.5rem;
        border-radius: 1rem;
        width: 90%;
    }

    .modal-title {
        font-size: 1.375rem;
    }

    .email-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .change-email-btn {
        width: 100%;
        text-align: center;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
        padding: 0.875rem;
    }

    .check-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}    .geometric-bg {
        position: fixed;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        z-index: 0;
    }

    .gradient-blob {
        position: absolute;
        filter: blur(60px);
        opacity: 0.25;
        border-radius: 50%;
        animation: float 25s infinite linear;
        mix-blend-mode: multiply;
    }

    .blob-1 {
        width: 700px;
        height: 700px;
        background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
        top: 15%;
        left: -5%;
        animation-delay: 0s;
    }

    .blob-2 {
        width: 600px;
        height: 600px;
        background: linear-gradient(45deg, #059669 0%, #34D399 100%);
        top: 40%;
        right: -10%;
        animation-duration: 30s;
    }

    .blob-3 {
        width: 500px;
        height: 500px;
        background: linear-gradient(225deg, #7C3AED 0%, #A78BFA 100%);
        bottom: -5%;
        left: 25%;
        animation-duration: 35s;
    }

    @keyframes float {
        0%, 100% {
            transform: translate(0, 0) rotate(0deg);
        }
        25% {
            transform: translate(15vw, 10vh) rotate(90deg);
        }
        50% {
            transform: translate(-10vw, 15vh) rotate(180deg);
        }
        75% {
            transform: translate(20vw, -10vh) rotate(270deg);
        }
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .gradient-blob {
            filter: blur(50px);
            opacity: 0.2;
        }
        
        .blob-1, .blob-2, .blob-3 {
            width: 350px;
            height: 350px;
        }
    }
 
    








    
    /* Verification Modal */
.verification-modal {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.verification-modal .modal-header {
  margin-bottom: 1.5rem;
}

.verification-modal .modal-header h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.verification-modal .modal-header p {
  color: #666;
  font-size: 0.9rem;
}

.verification-modal #verificationEmail {
  font-weight: bold;
  color: #2563eb;
}

.verification-modal .countdown {
  font-size: 0.85rem;
  color: #e11d48;
  margin-top: 1rem;
}

.verification-modal .error-message {
  color: #e11d48;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2rem;
}

.verification-modal .hint {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.verification-modal .modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.verification-modal .secondary-btn {
  background: #f3f4f6;
  color: #4b5563;
}

.verification-modal .secondary-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}