.login-container {
    max-width: 500px;
    margin: 100px auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.login-options {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    width: 220px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.google-login-btn:hover {
    background-color: #f1f1f1;
}

.google-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.google-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} 