html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    inset: 0;
    background-color: #050508;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

.scroll-container {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.login-card {
    background: rgba(10, 10, 18, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 28, 135, 0.3);
    box-shadow: 0 0 40px rgba(88, 28, 135, 0.15);
    animation: floatUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.input-group {
    position: relative;
    transition: all 0.3s;
}

.input-group:focus-within {
    transform: scale(1.02);
}

input {
    background: rgba(5, 5, 8, 0.6) !important;
    border: 1px solid rgba(88, 28, 135, 0.3) !important;
    color: white !important;
    transition: all 0.3s;
}

input:focus {
    border-color: #a855f7 !important;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15) !important;
    background: rgba(5, 5, 8, 0.8) !important;
}

@keyframes star-twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.animate-star {
    animation: star-twinkle 3s ease-in-out infinite;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
}

@keyframes orbit-1 {
    0% {
        transform: rotate3d(1, 1, 1, 0deg);
    }

    100% {
        transform: rotate3d(1, 1, 1, 360deg);
    }
}

@keyframes orbit-2 {
    0% {
        transform: rotate3d(1, -1, 1, 0deg);
    }

    100% {
        transform: rotate3d(1, -1, 1, 360deg);
    }
}

.animate-orbit-1 {
    animation: orbit-1 6s linear infinite;
}

.animate-orbit-2 {
    animation: orbit-2 7s linear infinite;
}