			* {margin: 0;padding: 0;box-sizing: border-box;}
			body {font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
			background-color: #2b2b2b;min-height: 100vh;
			display: flex;flex-direction: column;align-items: center;justify-content: center;padding: 20px;}
			.logo-container {text-align: center;margin-bottom: 60px;}
			.logo {color: white;font-size: 48px;font-weight: 300;letter-spacing: 8px;margin-bottom: 5px;}
			.university-name {color: white;font-size: 12px;letter-spacing: 3px;font-weight: 400;}
			.login-card {background-color: #f5f5f5;border-radius: 8px;padding: 60px 80px;box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);max-width: 600px;width: 100%;}
			.header-section {display: flex;align-items: center;justify-content: center;gap: 30px;margin-bottom: 50px;}
			.omega-title {font-size: 42px;font-weight: 300;letter-spacing: 4px;color: #333;}
			.divider {width: 1px;height: 60px;background-color: #ccc;}
			.subtitle {font-size: 18px;color: #555;font-weight: 400;}
			.microsoft-button {display: flex;align-items: center;justify-content: center;gap: 15px;background-color: white;border: 1px solid #8c8c8c;border-radius: 4px;padding: 20px 40px;cursor: pointer;transition: all 0.3s ease;text-decoration: none;color: #5e5e5e;font-size: 16px;width: 100%;}
			.microsoft-button:hover {background-color: #f8f8f8;border-color: #666;}
			.microsoft-logo {width: 24px;height: 24px;}
			.disclaimer {color: #ffffff;margin: 10px;max-width: 600px;background-color: rgba(255, 255, 255, 0.2);padding: 10px;border-radius: 10px;}
			
			@media (max-width: 768px) {
				.logo {font-size: 36px;letter-spacing: 6px;}
				.university-name {font-size: 10px;}
				.login-card {padding: 40px 30px;}
				.header-section {flex-direction: column;gap: 15px;}
				.omega-title {font-size: 32px;}
				.divider {width: 80px;height: 1px;}
				.subtitle {font-size: 16px;text-align: center;}
				.microsoft-button {padding: 15px 30px;font-size: 14px;}
			}
			@media (max-width: 480px) {
				.logo-container {margin-bottom: 40px;}
				.login-card {padding: 30px 20px;}
				.omega-title {font-size: 28px;}
				.subtitle {font-size: 14px;}
			}