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;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .login-container {
        padding: 32px 24px;
        margin: 20px;
        max-width: none;
    }

    .logo {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .google-signin {
        margin: 32px 0;
    }

    .status {
        margin-top: 16px;
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 24px 20px;
        margin: 15px;
    }

    .logo {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    h1 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .google-signin {
        margin: 24px 0;
    }

    .status {
        margin-top: 12px;
        padding: 8px;
        font-size: 13px;
    }
}
