* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            height: 100vh;
            background: url('../images/backgroundImage2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow: hidden;
        }

        .login-container {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 50px;
            width: 480px;
            animation: slideIn 0.6s ease-out;
            position: relative;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .branding-section {
            margin-bottom: 40px;
            text-align: center;
        }

        .company-logo {
            width: 240px;
            height: auto;
            margin: 0 auto 30px;
            display: block;
            filter: drop-shadow(0 4px 12px rgba(21, 65, 101, 0.3));
        }

        .main-title {
            font-size: 32px;
            font-weight: 700;
            color: #154165;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 14px;
            font-weight: 400;
            color: #444444;
            line-height: 1.4;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
            z-index: 2;
        }

        .form-group input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #cccccc;
            border-radius: 8px;
            font-size: 16px;
            font-family: 'Open Sans', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus {
            outline: none;
            border-color: #154165;
            box-shadow: 0 0 0 2px rgba(21, 65, 101, 0.1);
        }

        .form-group input::placeholder {
            color: #999;
            font-weight: 400;
        }

        .login-btn {
            width: 100%;
            padding: 16px;
            background: #154165;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Open Sans', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 25px;
        }

        .login-btn:hover {
            background: #1a4a73;
        }

        .login-btn:active {
            background: #0f3752;
        }

        .form-links {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .forgot-password,
        .signup-link {
            color: #FFC745;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .forgot-password:hover,
        .signup-link:hover {
            text-decoration: underline;
            color: #e6b33e;
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                background: 
                    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                    url('./images/backgroundImage2.png');
                background-size: cover;
                background-position: center;
                justify-content: center;
                align-items: center;
            }

            .login-container {
                width: 85%;
                padding: 40px;
            }

            .main-title {
                font-size: 28px;
            }

            .subtitle {
                font-size: 13px;
            }

            .form-links {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .login-container {
                width: 95%;
                padding: 30px;
            }

            .company-logo {
                width: 180px;
                margin-bottom: 25px;
            }

            .main-title {
                font-size: 24px;
            }

            .subtitle {
                font-size: 12px;
            }

            .form-group input {
                padding: 12px 12px 12px 40px;
                font-size: 16px;
            }

            .input-icon {
                left: 12px;
                font-size: 14px;
            }
        }

        /* Loading state */
        .login-btn.loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .login-btn.loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            display: inline-block;
            animation: spin 1s linear infinite;
            margin-left: 10px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Error states */
        .form-group.error input {
            border-color: #dc3545;
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
        }

        .error-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        /* Success state */
        .alert {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            display: none;
        }

        .alert.success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }

        .alert.error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }