body {
    background: radial-gradient(circle at center, #66D7D1 0%, #7B2E52 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}


.login-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.logo {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.tagline {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #66D7D1, #562039); 
    color: white; 
    border: none; 
    padding: 15px 30px; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 16px;
}

.login-btn.google {
    color: white;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.login-btn.google:hover {
    background: #4285F4;
    color: white;
}

.privacy {
    font-size: 12px;
    color: #999;
    margin-top: 30px;
}