
/* Shared styles */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
}

/* Video background styles */
#video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#video-bg video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

/* Mobile fallback */
@media (max-width: 767px) {
    #vanta-bg {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    }
}
.auth-container {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-btn img {
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}
/* Animation for form entry */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-container {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* PWA specific styles */
@media (display-mode: standalone) {
    body {
        background-color: white;
    }
    .auth-container {
        box-shadow: none;
        border-radius: 0;
    }
}

/* Accessibility focus styles */
button:focus, input:focus, a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}