body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ff914d, #ffcd4d);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.logo {
    width: 80px;
    margin-bottom: 1rem;
}

h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.google-login-button {
    display: inline-flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    color: #444;
    transition: 0.2s ease-in-out;
}

.google-login-button:hover {
    background: #f5f5f5;
}

.google-login-button img {
    width: 20px;
    margin-right: 12px;
}
