.login-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    min-height: 100vh;
}

.text-gradient {
    background: linear-gradient(45deg, #2937f0, #9f1ae2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card {
    border-radius: 16px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Override Firebase UI styles */
.firebaseui-container {
    max-width: 100% !important;
}

.firebaseui-card-content {
    padding: 0 !important;
}

.firebaseui-idp-button {
    border-radius: 30px !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.firebaseui-idp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Animation */
.card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.btn-google img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
} 