.cecf-form{display:flex;flex-wrap:wrap;gap:10px}
.field{flex:0 0 auto}
.spinner{
    display:none;
    width:16px;height:16px;
    border:2px solid #fff;
    border-top-color:transparent;
    border-radius:50%;
    animation:spin 1s linear infinite;
}
.cecf-form.loading .spinner{display:inline-block}
.cecf-form.loading .text{display:none}
.tooltip{display:none;color:green;margin-top:10px}
@keyframes spin{to{transform:rotate(360deg)}}

.row {
    display: flex;
}

.col-md-6 {
    width: 50%;
}

.col-md-12 {
    width: 100%;
}

.cecf-submit {
    position: relative;
}

.cecf-spinner {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;

    border: 3px solid currentColor;
    border-top-color: transparent;

    border-radius: 50%;
    display: none;
    margin-left: 8px;

    animation: cecf-spin .8s linear infinite;
}

.cecf-loading .cecf-spinner {
    display: inline-block;
}

.cecf-loading .cecf-btn-text {
    display: none;
}

@keyframes cecf-spin {
    to { transform: rotate(360deg); }
}


.cecf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.cecf-overlay.active {
    display: flex;
}

.cecf-overlay-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    min-width: 280px;
}

.cecf-overlay-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: cecf-spin 1s linear infinite;
}

.cecf-overlay-message {
    display: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}