.cf-0c3c8267-form-wrap {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 12px;
    font-family: inherit;
}

.cf-0c3c8267-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-0c3c8267-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cf-0c3c8267-col {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.cf-0c3c8267-col.cf-full {
    flex: 100%;
}

.cf-0c3c8267-col label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.cf-required {
    color: #e74c3c;
}

.cf-0c3c8267-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e5ea;
    border-radius: 8px;
    font-size: 15px;
    background: #f9fbfc;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.cf-0c3c8267-input:focus {
    border-color: #3498db;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.cf-0c3c8267-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cf-0c3c8267-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.cf-0c3c8267-response {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

.cf-0c3c8267-response.success {
    color: #27ae60;
}

.cf-0c3c8267-response.error {
    color: #e74c3c;
}