body {
    font-family: "Oswald", sans-serif;
}
.animated-aurora {
    background: radial-gradient(
            60rem 30rem at 10% 10%,
            rgba(99, 102, 241, 0.25),
            transparent 35%
        ),
        radial-gradient(
            50rem 30rem at 90% 15%,
            rgba(236, 72, 153, 0.22),
            transparent 35%
        ),
        radial-gradient(
            60rem 30rem at 10% 90%,
            rgba(16, 185, 129, 0.22),
            transparent 35%
        ),
        radial-gradient(
            50rem 30rem at 90% 85%,
            rgba(59, 130, 246, 0.22),
            transparent 35%
        );
    animation: auroraShift 18s ease-in-out infinite alternate;
    filter: saturate(112%);
}

@keyframes auroraShift {
    0% {
        background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
    }

    100% {
        background-position: 8% 6%, 92% 12%, 12% 92%, 88% 86%;
    }
}

.grid-overlay {
    background-image: linear-gradient(
            to right,
            rgba(17, 24, 39, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(to bottom, rgba(17, 24, 39, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(closest-side, black 70%, transparent);
}
#fileInput:disabled,
button[type="submit"]:disabled,
.disabled {
    cursor: not-allowed !important;
    opacity: 0.6;
}

button[type="submit"] {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

button[type="submit"]:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button[type="submit"]:active:not(:disabled) {
    transform: scale(0.95);
}

.custom-block {
    margin: 1rem auto;
    padding: 10px;
    font-weight: bold;
    background-color: #f9f9f916;
    display: none;
}

.custom-block.text-danger {
    color: rgb(91, 19, 19);
}

.custom-block.text-success {
    color: rgb(20, 79, 20);
}

.custom-block.loading {
    color: rgb(109 109 233);
}

.domain-item {
    opacity: 0;
    transform: translateX(-10px);
    animation: slideIn 0.3s ease-in-out forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#loader {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease-in-out;
}

#spinner {
    transform: scale(1);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.progress-bar {
    width: 100%;
    background: #e5e7eb;
    border-radius: 9999px;
    height: 0.5rem;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.5s ease-in-out;
}
