body {
    min-height: 100vh;
    background: linear-gradient(270deg, #6366f1, #8b5cf6, #ec4899, #22d3ee);
    background-size: 800% 800%;
    animation: gradientMove 12s ease infinite;
    font-family: 'Inter', sans-serif;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.auth-card {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}


body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(270deg,#6366f1,#8b5cf6,#ec4899,#22d3ee);
    background-size: 800% 800%;
    animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.wizard-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
    max-width: 600px;
    margin: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    width: 420px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

    .modal button {
        margin-right: 10px;
    }

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
