.transleti-cf-wrap {
    width: 100%;
    text-align: left;
}

.transleti-cf-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
}

.transleti-cf-field {
    width: 100%;
}

.transleti-cf-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95em;
    color: #1B1B42;
}

.transleti-cf-field label .required {
    color: #F5613D;
}

.transleti-cf-field input[type="text"],
.transleti-cf-field input[type="email"],
.transleti-cf-field textarea {
    width: 100% !important;
    padding: 12px 14px;
    border: 1px solid #e1e6ed;
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    color: #141414;
    background: #ffffff;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.transleti-cf-field input[type="text"]:focus,
.transleti-cf-field input[type="email"]:focus,
.transleti-cf-field textarea:focus {
    border-color: #9898b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(72, 45, 112, 0.1);
}

.transleti-cf-field textarea {
    resize: vertical;
    min-height: 120px;
}

.transleti-cf-checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 9px;
    font-weight: 400 !important;
    font-size: 0.88em;
    color: #1B1B42;
    cursor: pointer;
    line-height: 1.4;
}

.transleti-cf-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 4px;
    flex-shrink: 0;
    accent-color: #482d70;
}

.transleti-cf-recaptcha {
    display: flex;
    justify-content: flex-start;
}

.transleti-cf-submit {
    display: inline-block;
    padding: 13px 32px;
    background: #F5613D;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.transleti-cf-submit:hover {
    background: #e04e2a;
}

.transleti-cf-message {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 0.95em;
}

.transleti-cf-message--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.transleti-cf-message--error {
    background: #fde8e8;
    color: #c62828;
    border: 1px solid #f5c6c6;
}
