@media (min-width: 1500px) {
    .container {
        max-width: 1330px !important;
    }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(252 79 0 / var(--tw-bg-opacity));
}

.loader {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid #fc4f00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes zoom-in-slow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

.zoom-in-slow {
    animation: zoom-in-slow 8s ease-in-out forwards;
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fade-in-up 2s ease-out forwards;
}

.delay-500 {
    animation-delay: 0.5s;
}

.grecaptcha-badge {
    bottom: 70px !important;
}

.error-border {
    border: 1px solid #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.2);
}