.cacf-wrapper {
    font-family: 'Inter', sans-serif;
}

.cacf-wrapper .required {
    color: #ff0000;
}
.cacf-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cacf-wrapper .cacf-row {
    display: flex;
    gap: 20px;
}

.cacf-wrapper .cacf-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cacf-wrapper label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    text-align: left;
}

.cacf-wrapper input,
.cacf-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 3px;
    transition: border 0.3s ease;
}

.cacf-wrapper input:focus,
.cacf-wrapper textarea:focus {
    border-color: #000;
    outline: none;
}

.cacf-wrapper textarea {
    height: 160px;
    resize: vertical;
}

.cacf-wrapper .cacf-error {
    color: red;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.cacf-wrapper button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.cacf-wrapper button:hover {
    background: #333;
}

.cacf-wrapper .cacf-response {
    margin-top: 15px;
}

.cacf-success-message, .cacf-response {
    font-size: 16px;
    color: green;
    margin-top: 20px;
}

.cacf-response.error {
    color: red;
    margin-top: 10px;
}

.cacf-response.success {
    color: green;
}