.sct-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: inherit;
}

.sct-cond-hidden {
    display: none !important;
}

.sct-form-group {
    margin-bottom: 20px;
}

.sct-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.sct-input,
.sct-textarea,
.sct-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.sct-textarea {
    min-height: 100px;
    resize: vertical;
}

.sct-submit-button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sct-submit-button:hover {
    background-color: #005177;
}

.sct-checkbox-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
}

.sct-form-error {
    color: #d63638;
    background: #fbeaea;
    border: 1px solid #d63638;
    padding: 10px;
    margin-bottom: 15px;
}

.sct-dropzone {
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    background: #fafafa;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.sct-inline-options label {
    display: inline-block;
    margin-right: 15px;
    font-weight: normal;
}

.sct-radio-group label {
    display: block;
    margin-bottom: 5px;
}

.sct-radio-group.sct-inline-options label {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
}

.sct-dropzone:hover {
    background: #f0f0f1;
    border-color: #999;
}

.sct-dropzone.sct-drag-over {
    background: #f0f6fc;
    border-color: #2271b1;
    transform: scale(1.01);
}

.sct-dropzone.sct-has-file {
    background: #f0f9eb;
    border-color: #00a32a;
}

.sct-dropzone-message {
    pointer-events: none;
    font-size: 1.1em;
    color: #666;
}

.sct-dropzone input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* Multi-Step Forms */
.sct-multi-step-container {
    position: relative;
    overflow: hidden;
    /* For animations */
}

.sct-form-step {
    display: none;
    /* Hidden by default */
}

.sct-step-active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sct-step-nav {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.sct-btn-next,
.sct-btn-prev {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.sct-btn-next {
    background: #0073aa;
    color: white;
    margin-left: auto;
    /* Push to right */
}

.sct-btn-prev {
    background: #f0f0f1;
    color: #333;
    border: 1px solid #ccc;
}

.sct-btn-next:hover {
    background: #005177;
}

.sct-btn-prev:hover {
    background: #dcdcde;
}

/* Progress Bar */
.sct-progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 25px;
    overflow: hidden;
}

.sct-progress-fill {
    height: 100%;
    background: #0073aa;
    width: 0%;
    transition: width 0.3s ease;
}

/* Repeater styling */
.sct-repeater-row {
    border: 1px solid #666666;
    padding: .5em;
    margin-bottom: 1em;
    position: relative;
    background: #fdfdfd;
}

.sct-repeater-remove {
    margin-top: 10px;
    margin-left: auto;
    display: block;
    background-color: #d63638;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.sct-repeater-remove:hover {
    background-color: #a00;
}

/* Input Group / Currency Prefix Styling */
.sct-input-group {
    display: flex;
    align-items: stretch;
}

.sct-input-prefix {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #f0f0f1;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    color: #555;
    white-space: nowrap;
}

.sct-input-group .sct-input {
    border-radius: 0 4px 4px 0;
    flex: 1;
    width: 100%;
}

.sct-repeater-add {
    margin-top: 10px;
    background-color: #f0f0f1;
    color: #2271b1;
    border: 1px solid #2271b1;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.sct-repeater-add:hover {
    background-color: #f0f6fc;
    color: #135e96;
    border-color: #135e96;
}