body {
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-container {
    text-align: center;
    border: 1px solid #dadce0;
    padding: 48px 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
}

.logo {
    width: 48px;
    height: 48px;
    background-color: #1a73e8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 500;
}

h1 {
    color: #202124;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    margin-bottom: 30px;
}

.google-signin {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.status.success {
    background: #e6f4ea;
    color: #1e8e3e;
}

.status.error {
    background: #fce8e6;
    color: #c5221f;
}

.status.loading {
    background: #e8f0fe;
    color: #1a73e8;
}
