* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0A1F44;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* Decorative elements */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
                        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
            z-index: -1;
        }
        
        .form-container {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 40px;
            width: 100%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateZ(0);
        }
        
        .logo {
            text-align: center;
            margin-bottom: 20px;
            color: #D4AF37;
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        
        h2 {
            color: #D4AF37;
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .role-info {
            text-align: center;
            margin-bottom: 20px;
            padding: 10px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            color: #D4AF37;
            font-size: 14px;
        }
        
        .role-info i {
            margin-right: 5px;
        }
        
        form {
            display: flex;
            flex-direction: column;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .form-group {
            flex: 1;
            position: relative;
        }
        
        label {
            color: #D4AF37;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 500;
            display: block;
        }
        
        input, select {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            padding: 14px 14px 14px 45px;
            width: 100%;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }
        
        input:focus, select:focus {
            outline: none;
            border-color: #D4AF37;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.12);
        }
        
        input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .input-icon {
            position: absolute;
            left: 15px;
            top: 40px;
            color: #D4AF37;
            font-size: 18px;
        }
        
        .error {
            color: #ff4d4d;
            font-size: 12px;
            margin-top: 5px;
            min-height: 18px;
        }
        
        .error-message {
            background: rgba(255, 77, 77, 0.15);
            color: #ff4d4d;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid rgba(255, 77, 77, 0.3);
        }
        
        .success-message {
            background: rgba(39, 174, 96, 0.15);
            color: #27ae60;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid rgba(39, 174, 96, 0.3);
        }
        
        button {
            background: linear-gradient(135deg, #D4AF37 0%, #BF953F 100%);
            color: #0A1F44;
            border: none;
            border-radius: 8px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        button:hover {
            background: linear-gradient(135deg, #E5C158 0%, #D1AC4A 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }
        
        button:active {
            transform: translateY(0);
        }
        
        .login-link {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .login-link a {
            color: #D4AF37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .login-link a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        .autocomplete-dropdown {
            position: absolute;
            background: white;
            border: 1px solid #ccc;
            border-radius: 6px;
            max-height: 180px;
            overflow-y: auto;
            width: 100%;
            display: none;
            z-index: 999;
        }
        
        .autocomplete-dropdown div {
            padding: 8px 12px;
            cursor: pointer;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .autocomplete-dropdown div:hover {
            background: #eee;
        }

        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .form-container {
                padding: 30px 20px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            h2 {
                font-size: 24px;
            }
            
            input, select, button {
                padding: 12px 12px 12px 40px;
            }
            
            .input-icon {
                top: 37px;
            }
        }