:root {
    --primary-color: #4285F4; /* Google Blue */
    --bg-color: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: url('/static/img/background.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-header {
    margin-bottom: 2rem;
}

.google-login-container {
    margin-top: 2rem;
}

.google-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.google-login-button:hover {
    background-color: #357ae8; /* Darker Google Blue */
}

.google-login-button img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
