.sc-form .form-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.sc-form .form-group {
    width: 100%;
    margin-bottom: 12px;
}

.sc-form .form-group.group-half {
    width: calc(50% - 14px);
}

.sc-form .field-wrap {
    position: relative;
}

.sc-form .input-control {
    width: 100%;
    box-sizing: border-box;
}

.sc-form .input-control.is-invalid {
    border-color: #b20000;
}

.sc-form .field-error {
    color: #b20000;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.sc-form .form-response {
    display: none;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 14px;
}

.sc-form .form-response.is-success {
    display: block;
    background-color: rgba(122, 156, 89, 0.15);
    color: #7a9c59;
    border: 1px solid #7a9c59;
}

.sc-form .form-response.is-error {
    display: block;
    background-color: rgba(178, 0, 0, 0.1);
    color: #b20000;
    border: 1px solid #b20000;
}

.sc-form .submit-group {
    position: relative;
}

.sc-form .submit-group .btn-submit {
    cursor: pointer;
    transition: opacity 0.2s;
}

.sc-form .submit-group .btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.sc-form .sc-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 10;
    align-items: center;
    justify-content: center;
}

.sc-form .sc-overlay.is-active {
    display: flex;
}

.sc-form .sc-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 33, 116, 0.15);
    border-top-color: #002174;
    border-radius: 50%;
    animation: sc-spin 0.7s linear infinite;
}

@keyframes sc-spin {
    to { transform: rotate(360deg); }
}

.sc-form form {
    position: relative;
}

.sc-form .honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}
