/* Extracted from kullanici/login.php block 1. */
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            min-height: 100vh;
            display: flex;
            background: var(--grad-primary);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background */
        .bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .bg-shapes .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite;
        }

        .bg-shapes .shape:nth-child(1) {
            width: 80px; height: 80px;
            top: 10%; left: 10%;
            animation-delay: 0s;
        }

        .bg-shapes .shape:nth-child(2) {
            width: 120px; height: 120px;
            top: 70%; left: 80%;
            animation-delay: 2s;
        }

        .bg-shapes .shape:nth-child(3) {
            width: 60px; height: 60px;
            top: 40%; left: 70%;
            animation-delay: 4s;
        }

        .bg-shapes .shape:nth-child(4) {
            width: 150px; height: 150px;
            top: 80%; left: 20%;
            animation-delay: 6s;
        }

        .bg-shapes .shape:nth-child(5) {
            width: 40px; height: 40px;
            top: 20%; left: 85%;
            animation-delay: 8s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
            50% { transform: translateY(-30px) rotate(180deg); opacity: 0.8; }
        }

        /* Main Container */
        .login-wrapper {
            display: flex;
            width: 100%;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        /* Login Card */
        .login-card {
            background: var(--clr-surface);
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 440px;
            overflow: hidden;
            animation: slideUp 0.6s ease-out;
        }

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

        /* Card Header */
        .login-header {
            background: var(--grad-primary);
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
        }

        .login-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--clr-surface);
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }

        .login-logo {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            backdrop-filter: blur(10px);
        }

        .login-logo img {
            max-width: 60px;
            max-height: 60px;
        }

        .login-logo i {
            font-size: 2.5rem;
            color: white;
        }

        .login-header h1 {
            color: white;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .login-header p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
        }

        /* Card Body */
        .login-body {
            padding: 2.5rem 2rem 2rem;
        }

        /* Form Groups */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--clr-gray-700);
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
        }

        .form-label i {
            color: var(--clr-primary);
            font-size: 0.85rem;
        }

        .form-control {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 2px solid var(--clr-gray-200);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--clr-gray-50);
            color: var(--clr-gray-700);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--clr-primary);
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
            background: var(--clr-surface);
        }

        .form-control::placeholder {
            color: var(--clr-gray-400);
        }

        /* Password Input */
        .password-wrapper {
            position: relative;
        }

        .password-wrapper input {
            padding-right: 50px;
        }

        .password-toggle {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--clr-gray-400);
            cursor: pointer;
            padding: 0.25rem;
            transition: color 0.3s ease;
        }

        .password-toggle:hover {
            color: var(--clr-primary);
        }

        /* Remember Me & Forgot */
        .form-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

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

        .remember-me input {
            display: none;
        }

        .remember-checkbox {
            width: 20px;
            height: 20px;
            border: 2px solid var(--clr-gray-300);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .remember-checkbox i {
            font-size: 0.7rem;
            color: white;
            opacity: 0;
            transform: scale(0);
            transition: all 0.2s ease;
        }

        .remember-me input:checked + .remember-checkbox {
            background: var(--grad-primary);
            border-color: var(--clr-primary);
        }

        .remember-me input:checked + .remember-checkbox i {
            opacity: 1;
            transform: scale(1);
        }

        .remember-text {
            color: var(--clr-gray-500);
            font-size: 0.9rem;
        }

        .forgot-link {
            color: var(--clr-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .forgot-link:hover {
            color: var(--clr-primary-dark);
            text-decoration: underline;
        }

        /* Login Button */
        .btn-login {
            width: 100%;
            padding: 1rem;
            border: none;
            background: var(--grad-primary);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

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

        .btn-login:active {
            transform: translateY(0);
        }

        /* Footer */
        .login-footer {
            text-align: center;
            padding: 1.5rem 2rem 2rem;
            border-top: 1px solid var(--clr-gray-100);
        }

        .login-footer p {
            color: var(--clr-gray-400);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .login-wrapper {
                padding: 1rem;
            }

            .login-header {
                padding: 2rem 1.5rem;
            }

            .login-body {
                padding: 2rem 1.5rem 1.5rem;
            }

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

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