body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f3f4f6;
    /* Hardcoded surface-2 */
    font-family: 'DM Sans', sans-serif;
    color: #111827;
}

.login-card {
    background: #ffffff;
    /* Hardcoded surface-1 */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    border: 1px solid #e5e7eb;
    /* Hardcoded surface-3 */
}

.login-logo {
    display: flex;
    /* Flexbox for perfect centering */
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.login-logo img {
    height: 80px;
    /* Increased size */
    width: auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111827;
    /* Hardcoded text-1 */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #d1d5db;
    /* Visible border */
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    /* Prevent padding issues */
}

.form-group input:focus {
    border-color: #d4a017;
    /* Hardcoded accent */
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: #d4a017;
    /* Hardcoded accent */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    margin-top: 8px;
    display: block;
    /* Ensure visibility */
}

.btn-login:hover {
    background: #b88a10;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
    display: none;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    color: #6b7280;
    /* Hardcoded text-2 */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #d4a017;
}