.submit-skeleton {
    margin-top: 10px;
    display: none;
    width: 100%;
}

.submit-skeleton.is-visible {
    display: block;
}

.skeleton-line {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 26px;
    background: #e9edf3;
    position: relative;
    overflow: hidden;
}

.skeleton-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    animation: skeleton-shimmer 1.2s infinite;
}

.skeleton-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.skeleton-row .skeleton-line {
    margin-bottom: 0;
}

.skeleton-half {
    width: 48%;
}

.skeleton-textarea {
    height: 115px;
}

.skeleton-small {
    width: 42%;
}

.form-fields-hidden {
    display: none !important;
}

@keyframes skeleton-shimmer {
    100% {
        left: 100%;
    }
}
