:root {
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #10B981;
    --text-primary: #1F2937;
    --text-secondary: #4B5563;
    --background: #ffffff;
    --background-alt: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background-alt);
}

.main {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
}

/* Hero Section */
.hero {
    padding: 2rem 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30L30 0Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: moveBackground 20s linear infinite;
    opacity: 0.2;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content Section */
.content-section {
    background: var(--background);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 250px;
    height: auto;
}

.content {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
}

.instructions {
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 2rem;
}

input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

nav {
    margin-top: auto;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .content-section {
        order: 1;
        padding: 1.5rem;
    }

    .hero {
        order: 2;
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
.disclaimer-footer {
    background: var(--primary);
    color: var(--background);
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    width: 100%;
    margin-top: auto;
}

.disclaimer-footer p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Update content-section to handle footer */
.content-section {
    background: var(--background);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative; /* Add this */
}

@media (max-width: 640px) {
    .hero {
        display: none;
    }

    .content-section {
        padding: 1rem;
    }

    .logo-container img {
        max-width: 200px;
    }

    h2 {
        font-size: 1.25rem;
    }

    .instructions {
        font-size: 0.8rem;
    }

    input, button {
        font-size: 0.9rem;
        padding: 0.625rem 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav a {
        font-size: 0.8rem;
    }
    .disclaimer-footer {
        font-size: 0.7rem;
        padding: 0.75rem;
    }
}