    * { 
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

        body {
            min-height: 100vh;
            background: #14171F;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Segoe UI', sans-serif;
        }

        .bg-grid {
            position: fixed;
            inset: 0;
            background-size: 40px 40px;
            pointer-events: none;
        }

        .glow {
            position: fixed;
            width: 600px; height: 600px;
            border-radius: 50%;
            top: -150px; left: -150px;
            pointer-events: none;
        }

        .glow2 {
            position: fixed;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(99,153,34,0.12) 0%, transparent 70%);
            bottom: -100px; right: -100px;
            pointer-events: none;
        }

        .card {
            position: relative;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 48px 40px;
            width: 600px;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.5);
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }

        .logo-icon {
            width: 104px;
			height: auto;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .logo-icon img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}

        .logo-text {
			color: #fff;
			font-size: 40px;
			font-weight: 600;
			line-height: 1.2;
		}

        .logo-sub {
			color: rgba(255,255,255,0.4); 
			font-size: 12px; 
			font-weight: 400; 
		}

        h1 { 
			color: #fff;
			font-size: 26px; 
			font-weight: 700; 
			margin-bottom: 6px;
		}

        .subtitle {
			color: rgba(255,255,255,0.45);
			font-size: 14px; 
			margin-bottom: 32px;
		}

        .ms-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #2f2f2f;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 10px;
            padding: 14px 20px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s, border-color 0.2s;
            margin-bottom: 24px;
        }

        .ms-btn:hover {
			background: #3a3a3a; 
			border-color: rgba(255,255,255,0.25); 
		}

        .ms-logo {
			display: flex;
			flex-wrap: wrap;
			gap: 2px;
			width: 20px;
			height: 20px;
		}

        .ms-logo span {
			width: 9px;
			height: 9px;
			border-radius: 1px;
		}

        .ms-logo span:nth-child(1) { background: #f25022; }
        .ms-logo span:nth-child(2) { background: #7fba00; }
        .ms-logo span:nth-child(3) { background: #00a4ef; }
        .ms-logo span:nth-child(4) { background: #ffb900; }

        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .divider hr {
			flex: 1;
			border: none;
			border-top: 1px solid rgba(255,255,255,0.1);
		}

        .divider span {
			color: rgba(255,255,255,0.3);
			font-size: 12px; 
		}

        .field {
			margin-bottom: 16px;
		}

        .field label {
            display: block;
            color: rgba(255,255,255,0.5);
            font-size: 12px;
            margin-bottom: 6px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .field input {
            width: 100%;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 12px 14px;
            color: #fff;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }

        .field input:focus {
			border-color: rgba(99,153,34,0.6); 
		}
		
        .field input::placeholder {
			color: rgba(255,255,255,0.2); 
		}

        .submit-btn {
            width: 100%;
            background: #4caf50;
            border: none;
            border-radius: 10px;
            padding: 14px;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 8px;
            transition: opacity 0.2s;
        }

        .submit-btn:hover {
			opacity: 0.9;
		}

        .error {
            background: rgba(242,80,34,0.15);
            border: 1px solid rgba(242,80,34,0.3);
            border-radius: 8px;
            padding: 12px 14px;
            color: #ff6b4a;
            font-size: 13px;
            margin-bottom: 20px;
        }

        .footer {
            text-align: center;
            margin-top: 24px;
            color: rgba(255,255,255,0.2);
            font-size: 12px;
        }