/* SAME animation for both */
.track1 .asw-logo-row,
.track2 .asw-logo-row {
    animation: marqueeScroll 100s linear infinite;
}

/* optional: reverse second row */
.track2 .asw-logo-row {
    animation-direction: reverse;
}
.asw-logo-track:hover .asw-logo-row {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.description-box {
    line-height: 1.6;
}

.read-toggle {
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.read-toggle:hover {
    text-decoration: underline;
}
.bg-light-purple {
    background: #f4edff;
}

.error-message {
    font-size: 12px;
    color: #dc3545;
}

.success-message {
    color: #28a745;
    padding: 10px;
    border: 1px solid #28a745;
    border-radius: 4px;
    background-color: #f0f9f4;
}

.error-box {
    color: #dc3545;
    padding: 10px;
    border: 1px solid #dc3545;
    border-radius: 4px;
    background-color: #fdf5f6;
}

.submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submitBtn.loading {
    position: relative;
    color: transparent;
}

.submitBtn.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}