.ecf-wrapper {
    max-width: 520px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.ecf-group {
    margin-bottom: 18px;
}

.ecf-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.ecf-group input,
.ecf-group select,
.ecf-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    outline: none;
}

.ecf-group input:focus,
.ecf-group select:focus,
.ecf-group textarea:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

/* Button */
.ecf-submit-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #2bace2, #2563eb);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ecf-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.ecf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader text */
.btn-loader {
    font-size: 14px;
}

/* Response messages */
.ecf-response {
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

/* Success */
.ecf-response span[style*="green"] {
    display: inline-block;
    padding: 10px;
    background: #ecfdf5;
    color: #065f46 !important;
    border-radius: 6px;
    width: 100%;
}

/* Error */
.ecf-response span[style*="red"] {
    display: inline-block;
    padding: 10px;
    background: #fef2f2;
    color: #991b1b !important;
    border-radius: 6px;
    width: 100%;
}