
body {
		  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #16213e 50%, #0f3460 75%, #1a1f3a 100%);
		  font-family: 'Inter', sans-serif;
		  display: flex;
		  align-items: center;
		  justify-content: center;
		  min-height: 100vh;
		  padding: 20px; 
		  overflow: hidden;
		  color: #fff;
		}
         /* ==================== MODAL STILLERI ==================== */
        .rehabis-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease; 
        }

        .rehabis-modal.active {
            display: flex;
        }

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

        .rehabis-modal-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideUp 0.3s ease;
            /* Modalı tam ortalamak için margin: auto ekledik */
            margin: auto;
        }

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

        /* Modal Sol Taraf */
        .modal-left {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .modal-left::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .modal-left .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .brand {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            font-size: 32px;
            font-weight: bold;
        }

        .brand i {
            font-size: 40px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .modal-left p {
            position: relative;
            z-index: 1;
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.95;
        }

        /* Modal Sağ Taraf */
        .modal-right {
            padding: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 32px;
            cursor: pointer;
            color: #999;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            color: #333;
            background: #f0f0f0;
            border-radius: 50%;
        }

        .modal-right h2 {
            font-size: 28px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 14px;
        }

        /* Form Stilleri */
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .form-group i {
            position: absolute;
            left: 15px;
            color: #667eea;
            font-size: 18px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group input::placeholder {
            color: #999;
        }

        .g-recaptcha {
            margin: 15px 0 !important;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0 20px 0;
            cursor: pointer;
        }

        .remember-me input {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #667eea;
        }

        .remember-me label {
            font-size: 14px;
            color: #64748b;
            cursor: pointer;
            margin: 0;
        }

        /* Buton Stilleri */
        .btn-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .login-btn {
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .login-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .login-btn:disabled {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .social-login-btn {
            padding: 14px;
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
        }

        .social-login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
        }

        /* Sosyal Giriş Butonları */
        .social-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 15px;
        }

        .social-btn {
            padding: 14px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .social-btn:hover {
            transform: scale(1.05);
        }

        .social-btn i {
            font-size: 20px;
        }

        .facebook-btn {
            background: #1877f2;
            color: white;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
        }

        .facebook-btn:hover {
            background: #166fe5;
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
        }

        .google-btn {
            background: white;
            color: #333;
            border: 2px solid #e0e0e0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .google-btn:hover {
            background: #f9f9f9;
            border-color: #d0d0d0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .google-btn i {
            color: #ea4335;
        }

        .instagram-btn {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
        }

        .instagram-btn:hover {
            filter: brightness(1.1);
            box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
        }

        /* Form Footer */
        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            font-size: 13px;
        }

        .form-footer a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .form-footer a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .form-footer a.forgot {
            color: #999;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 12px;
            color: #999;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }

        /* Back Header */
        .back-header {
            display: none;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .back-header.active {
            display: flex;
        }

        .back-btn {
            width: 40px;
            height: 40px;
            background: #f0f0f0;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #e0e0e0;
            transform: translateX(-3px);
        }

        .back-header h2 {
            flex: 1;
            font-size: 24px;
            color: #1a1a1a;
        }

        /* Spinner */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .loading-spinner {
            display: inline-block;
            width: 22px;
            height: 22px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        /* Modal Alt Yazı */
        .footer-text {
            font-size: 11px;
            color: #999;
            text-align: center;
            line-height: 1.6;
            margin-top: 15px;
        }

        .footer-text a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

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

        /* Gizle/Göster */
        .hidden {
            display: none !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rehabis-modal-content {
                grid-template-columns: 1fr;
                width: 95%;
                max-height: 95vh;
            }

            .modal-left {
                display: none;
            }

            .modal-right {
                padding: 30px 20px;
            }

            .modal-right h2 {
                font-size: 24px;
            }

            .form-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
/************ sosyal giriş biter *****************/

.form-footer a:hover, .footer-text a:hover { 
    text-decoration: none; 
	color: #6d28d9;
}	
	 .alertify,.ajs-modal,.alertify-notifier,.alertify-show,.alertify-log,.alertify-dialog,.alertify-message,.alertify-cover{z-index:999999!important}