/* login.css - Google Brand Version */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--surface-dim);
    /* Google Grey 50 */
    font-family: var(--md-ref-typeface-plain);
}

.login-layout {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 448px;
    /* Standard Google Sign-in Card Width */
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    /* Google Card Radius */
    padding: 48px 40px 36px;
    /* Google Spacing */
    box-shadow: none;
    /* Google login cards are flat with border usually, or very subtle shadow */
}

/* Adjust headings for Google look */
.headline-large {
    font-family: 'Google Sans', 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.body-medium {
    color: var(--text-primary);
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 16px;
}

/* Checkbox alignment */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--google-blue);
}

/* Override default input focus for Google Blue */
.form-input:focus {
    border-color: var(--google-blue);
    border-width: 2px;
}

.form-input:focus~.form-label,
.form-input:not(:placeholder-shown)~.form-label {
    color: var(--google-blue);
}