:root {
            --dark-blue: #0a2463;
            --yellow: #FFD700;
            --white: #FFFFFF;
            --red: #FF0000;
            --teal: #008080;
            --navy: #000080;
            --skyblue: #87CEEB;
            --teal-tosca: #40E0D0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
        .login-container {
            display: flex;
            max-width: 900px;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-radius: 5px;
            overflow: hidden;
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .info-card {
            background-color: var(--dark-blue);
            color: white;
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .login-card {
            background-color: var(--teal);
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .logo {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
            object-fit: contain;
        }
        
        .info-card h1 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--yellow);
        }
        
        .info-card p {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .feature {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            margin: 5px;
        }
        
        .feature.yellow { background-color: var(--yellow); color: var(--dark-blue); }
        .feature.white { background-color: var(--white); color: var(--dark-blue); }
        .feature.red { background-color: var(--red); color: white; }
        .feature.teal-tosca { background-color: var(--teal-tosca); color: var(--dark-blue); }
        .feature.navy { background-color: var(--navy); color: white; }
        .feature.skyblue { background-color: var(--skyblue); color: var(--dark-blue); }
        
        .login-card h2 {
            color: white;
            margin-bottom: 30px;
            text-align: center;
            font-size: 28px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            color: white;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
            background-color: white;
        }
        
        .btn-login {
            background-color: var(--dark-blue);
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            margin-top: 10px;
        }
        
        .btn-login:hover {
            background-color: var(--navy);
            transform: translateY(-2px);
        }
        
        .back-link {
            display: inline-block;
            color: white;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s;
            text-align: center;
            position: relative;
            padding-left: 20px;
        }
        
        .back-link:hover {
            color: var(--yellow);
            transform: translateX(-5px);
        }
        
        .back-link i {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s;
        }
        
        .back-link:hover i {
            transform: translateY(-50%) translateX(-5px);
        }
        
        header, footer {
            background-color: var(--dark-blue);
            color: var(--yellow);
            padding: 15px 0;
            text-align: center;
            width: 100%;
            position: fixed;
            left: 0;
        }
        
        header {
            top: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        footer {
            bottom: 0;
            font-size: 14px;
        }
        
        footer a {
            color: var(--yellow);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .contact-info {
            margin-top: 20px;
            font-size: 14px;
        }
        
        .contact-info p {
            margin-bottom: 5px;
        }
        
        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }
            
            header, footer {
                position: static;
            }
            
            body {
                padding: 0;
                flex-direction: column;
            }
        }