.roldz-contact-form-wrapper {
    width: 100%;
    margin-top: 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.roldz-contact-form {
    width: 100%;
    margin: 0;
}

.roldz-contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.roldz-contact-form .roldz-field {
    width: 100%;
    margin: 0 0 18px;
}

.roldz-contact-form label {
    display: block;
    margin: 0 0 8px;
    color: #173152;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.roldz-contact-form label span {
    color: #ff7200;
}

.roldz-contact-form input,
.roldz-contact-form select,
.roldz-contact-form textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #d8dfe8;
    border-radius: 9px;
    background: #ffffff;
    color: #173152;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    outline: none;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.roldz-contact-form textarea {
    min-height: 135px;
    resize: vertical;
}

.roldz-contact-form input:focus,
.roldz-contact-form select:focus,
.roldz-contact-form textarea:focus {
    border-color: #1877f2;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, .12);
}

.roldz-contact-form select {
    cursor: pointer;
}

.roldz-contact-submit {
    display: inline-flex;
    width: 100%;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 2px 0 0;
    padding: 14px 20px;
    border: 1px solid #ff7200;
    border-radius: 9px;
    background: #ff7200;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.roldz-contact-submit:hover {
    background: #e96500;
    color: #ffffff;
    transform: translateY(-1px);
}

.roldz-contact-submit:disabled {
    opacity: .7;
    cursor: wait;
    transform: none;
}

.roldz-contact-status {
    min-height: 22px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.roldz-contact-status.is-sending {
    color: #6b7788;
}

.roldz-contact-status.is-success {
    color: #16844d;
    font-weight: 700;
}

.roldz-contact-status.is-error {
    color: #c0392b;
    font-weight: 700;
}

.roldz-contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .roldz-contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .roldz-contact-form-wrapper {
        margin-top: 20px;
    }
}
