.login-form {
    gap: 1rem;
    max-width: 350px;
}

.login-form button {
    width: 100%;
}

/* === API Key Prompt Page === */
.auth-prompt-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem;
}

.auth-prompt-icon {
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.auth-prompt-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.auth-prompt-form input {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    background-color: var(--input-bg);
    color: var(--text);
    border: 1px solid var(--surface-border);
    border-radius: 0.375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-prompt-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--focus-ring-color);
}