* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f172a, #581c87, #0f172a);
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
}

/* Animated Background Container */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.25), rgba(59, 130, 246, 0.25));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Shapes */
.shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: rotate 15s linear infinite;
}

.shape1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    transform: rotate(45deg);
}

.shape2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 15%;
    border-radius: 50%;
    border-color: rgba(249, 115, 22, 0.3);
}

.shape3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: rgba(147, 51, 234, 0.2);
    border: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Wave Animation */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    animation: wave 4s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

/* Grid Pattern */
.grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Main Content */
.container {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.logo-section {
    text-align: center;
    animation: fade-in 2s ease-out;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #fff, #fff);
    border-radius: 20px;
    filter: blur(80px);
    opacity: 0.5;
    /* animation: pulse 1s ease-in-out normal; */
}

.logo {
    position: relative;
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FF6F3F;
    font-size: 1rem;
    font-weight: 500;
}

.tagline a {
    color: #ff6f3f;
    font-weight: 700;
    font-size: x-large;
    text-decoration: none;
    text-transform: uppercase;
}

.sparkle {
    width: 45px;
    height: 45px;
    animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    padding: 5px;
}

.copyright,
.copyright a {
    color: #dddddd;
    font-size: 0.875rem;
    text-decoration: none;
}

.logo-box {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 400px;
}

.logo-box .form-control {
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    color: #fff;
    padding: 25px;
    background: transparent;
}

::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
    opacity: 1;
}

::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
}