﻿ <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f0f0f0;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .login-container {
            background: white;
            width: 100%;
            max-width: 480px;
            padding: 60px 40px;
            text-align: center;
        }

        .logo-section {
            margin-bottom: 60px;
        }

        .logo-image {
            width: 100%;
            max-width: 300px;
            height: auto;
            margin: 0 auto;
        }

        .logo-placeholder {
            display: inline-block;
            text-align: center;
        }

        .omega-symbol {
            width: 80px;
            height: 80px;
            background: #5a6b3f;
            border-radius: 0;
            display: inline-block;
            position: relative;
            margin-bottom: 10px;
        }

        .omega-symbol::before {
            content: 'Ω';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 50px;
            color: white;
            font-weight: bold;
            font-family: Georgia, serif;
        }

        .company-name {
            font-size: 24px;
            color: #666;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .company-tagline {
            font-size: 11px;
            color: #999;
            letter-spacing: 2px;
        }

        .sign-in-title {
            font-size: 28px;
            color: #000;
            font-weight: 400;
            margin-bottom: 50px;
        }

        .input-group {
            margin-bottom: 35px;
            position: relative;
        }

        .input-wrapper {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #333;
            padding: 10px 0;
        }

        .input-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .user-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #4fc3f7;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .lock-icon {
            width: 35px;
            height: 35px;
            background: #42a5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .input-group input {
            border: none;
            outline: none;
            font-size: 18px;
            color: #666;
            background: transparent;
            flex: 1;
            padding: 5px 0;
            font-weight: 300;
        }

        .input-group input::placeholder {
            color: #999;
        }

        .eye-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            flex-shrink: 0;
        }

        .login-button {
            width: 100%;
            padding: 18px;
            background: #42a5f5;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            box-shadow: 0 2px 8px rgba(66, 165, 245, 0.3);
        }

        .login-button:hover {
            background: #1e88e5;
            box-shadow: 0 4px 12px rgba(66, 165, 245, 0.4);
            transform: translateY(-2px);
        }

        .login-button:active {
            transform: translateY(0);
        }
        @media (max-width: 480px) {
            .login-container {
                padding: 40px 30px;
            }

            .sign-in-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .company-name {
                font-size: 20px;
            }
        }