:root {
    --primary-color: #1a237e; /* Professional Navy Blue */
    --accent-color: #ff9800;  /* Digital India Orange */
    --bg-light: #f4f7f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-container {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    margin: 20px;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
}

h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group { margin-bottom: 1rem; }

label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: 0.3s;
}

input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-primary:hover { background: #0d144d; }

.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.footer-text a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

@media (max-width: 480px) {
    .auth-container { padding: 1.5rem; }
}