        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #ffff;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        .main-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1100px;
        }

        .login-wrapper {
            display: flex;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .login-image {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 50%;
            background: #126d5e;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .logo-container {
            position: relative;
            z-index: 2;
        }

        .login-image img {
            width: 140px;
            height: auto;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
            animation: bounce 3s infinite ease-in-out;
            margin-bottom: 30px;
        }

        .welcome-message {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .welcome-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .features-list {
            text-align: left;
            margin-top: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .feature-item i {
            background: rgba(255, 255, 255, 0.2);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 16px;
        }

        .form-container {
            padding: 50px 60px;
            width: 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        h2 {
            font-size: 38px;
            font-weight: 800;
            background: #126d5e;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            text-align: center;
            letter-spacing: -1px;
            position: relative;
        }

        .subtitle {
            font-size: 14px;
            color: #6c757d;
            text-align: center;
            margin-bottom: 30px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
        }

        .form-group.full-width {
            width: 100%;
            margin-bottom: 20px;
        }

        label {
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            display: block;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #95a5a6;
            font-size: 16px;
        }

        input[type="text"], 
        input[type="email"], 
        input[type="number"], 
        input[type="password"] {
            width: 100%;
            padding: 14px 16px 14px 45px;
            border: 2px solid #e8ecf1;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        input[type="text"]:focus, 
        input[type="email"]:focus, 
        input[type="number"]:focus, 
        input[type="password"]:focus {
            border-color: #667eea;
            background: #fff;
            outline: none;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .password-wrapper {
            position: relative;
        }

        .password-wrapper input {
            padding-right: 45px;
        }

        .toggle-password {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #95a5a6;
            display: none;
            transition: color 0.2s;
        }

        .toggle-password:hover {
            color: #667eea;
        }

        .password-strength {
            height: 4px;
            background: #e8ecf1;
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
            display: none;
        }

        .password-strength-bar {
            height: 100%;
            width: 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .strength-weak { background: #e74c3c; width: 33%; }
        .strength-medium { background: #f39c12; width: 66%; }
        .strength-strong { background: #27ae60; width: 100%; }

        .error-message {
            color: #e74c3c;
            font-size: 13px;
            background: #ffebee;
            padding: 12px 16px;
            border-radius: 8px;
            margin-top: 15px;
            margin-bottom: 15px;
            display: none;
            border-left: 4px solid #e74c3c;
        }

        .password-requirements {
            font-size: 12px;
            color: #6c757d;
            margin-top: 8px;
            padding-left: 20px;
        }

        .password-requirements li {
            margin-bottom: 4px;
            position: relative;
        }

        .password-requirements li::before {
            position: absolute;
            left: -12px;
        }

        input[type="submit"] {
            width: 100%;
            padding: 16px;
            background: #126d5e;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            text-transform: uppercase;          
        }

        input[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        input[type="submit"]:active {
            transform: translateY(0);
        }

        .login-link {
            margin-top: 25px;
            text-align: center;
            color: #6c757d;
            font-size: 14px;
        }

        .login-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .login-link a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        footer {
            position: fixed;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: rgba(255, 255, 255, 0.95);
            font-size: 13px;
            z-index: 1000;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Success Animation */
        .success-checkmark {
            display: none;
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }

        .success-checkmark .check-icon {
            width: 80px;
            height: 80px;
            position: relative;
            border-radius: 50%;
            box-sizing: content-box;
            border: 4px solid #27ae60;
        }

        .success-checkmark .check-icon::before {
            top: 3px;
            left: -2px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }

        .success-checkmark .check-icon::after {
            top: 0;
            left: 30px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s ease-in;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .login-wrapper {
                flex-direction: column;
            }

            .login-image,
            .form-container {
                width: 100%;
            }

            .login-image {
                padding: 40px 30px;
            }

            .form-container {
                padding: 40px 30px;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 10px;
            }

            .form-container {
                padding: 30px 20px;
            }

            h2 {
                font-size: 24px;
            }

            input[type="text"], 
            input[type="email"], 
            input[type="number"], 
            input[type="password"] {
                padding: 12px 14px 12px 40px;
            }
        }

        /* Loading State */
        .btn-loading {
            position: relative;
            pointer-events: none;
        }

        .btn-loading::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            top: 50%;
            left: 50%;
            margin-left: -8px;
            margin-top: -8px;
            border: 2px solid #fff;
            border-radius: 50%;
            border-top-color: transparent;
        }