html {
    overflow-y: scroll;
}

.auth-container { max-width: 400px; margin: 50px auto; padding: 30px; background: #fff; border: none; border-radius: 12px; }
.auth-container h1 { text-align: center; font-size: 1.5em; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; }
.form-group input { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid #ccc; box-sizing: border-box; }
.auth-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1.2px solid #e0e0e0;
    background: #fff;
    color: #222;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.auth-btn:hover {
    background: #f5f5f5;
    border-color: #bdbdbd;
    color: #111;
}
.auth-switch { text-align: center; margin-top: 15px; }
.auth-grey-text { color: #888; }
.auth-bw-link { color: #111 !important; text-decoration: underline; filter: grayscale(1); transition: filter 0.2s; }
.auth-bw-link:hover { filter: none; color: #000 !important; }

/* Google button styles */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    padding: 10px 0;
    background: #fff;
    color: #222;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
    box-shadow: 0 1px 2px rgba(60,60,60,0.03);
    gap: 8px;
}
.google-btn:hover {
    background: #f5f5f5;
    border-color: #888;
}