        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #121212;
            color: #E0E0E0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .background-glow {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(0, 174, 239, 0.1);
            filter: blur(80px);
            z-index: 0;
        }
        
        .bg-1 {
            top: 20%;
            left: 30%;
        }
        
        .bg-2 {
            bottom: 10%;
            right: 20%;
            background: rgba(0, 174, 239, 0.15);
        }
        
        .login-container {
            position: relative;
            z-index: 1;
            background-color: rgba(30, 30, 30, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            width: 400px;
            border: 1px solid rgba(80, 80, 80, 0.3);
        }
        
        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .login-header h1 {
            font-size: 28px;
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 10px;
        }
        
        .login-header p {
            color: #A0A0A0;
            font-size: 14px;
        }
        
        .input-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #E0E0E0;
        }
        
        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #333;
            border-radius: 6px;
            background-color: rgba(20, 20, 20, 0.6);
            color: #FFFFFF;
            transition: all 0.3s ease;
        }
        
        .input-group input:focus {
            outline: none;
            border-color: #00AEEF;
            box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.3);
        }
        
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .remember-me {
            display: flex;
            align-items: center;
        }
        
        .remember-me input {
            margin-right: 8px;
            accent-color: #00AEEF;
        }
        
        .forgot-password a {
            color: #87CEEB;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .forgot-password a:hover {
            color: #00AEEF;
            text-decoration: underline;
        }
        
        .btn-login {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #00AEEF, #0088c3);
            border: none;
            border-radius: 6px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .register-link {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
        }
        
        .register-link a {
            color: #00AEEF;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .register-link a:hover {
            text-decoration: underline;
        }
        
        .login-footer {
            margin-top: 30px;
            text-align: center;
            position: relative;
			
        }
        
        .login-footer::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #333;
            z-index: -1;
        }
        
        .login-footer span {
            background-color: rgba(30, 30, 30, 1);
            padding: 0 15px;
            font-size: 12px;
            color: #A0A0A0;
			border-radius:4px;
        }
        

        .metaguard-link {
            color: #00AEEF;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .metaguard-link:hover {
            color: #87CEEB;
            text-shadow: 0 0 8px rgba(0, 174, 239, 0.5);
        }
        
        .metaguard-link::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: #00AEEF;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }
        
        .metaguard-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .error-message {
            color: #ff4c4c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        /* Loading spinner */
        .spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #FFFFFF;
            animation: spin 1s ease-in-out infinite;
            margin-left: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
        }
