.oci-newsletter-form form {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.oci-newsletter-form label {
    display: none;
}

.oci-newsletter-form .wpforms-field-container {
    width: 75%;
    margin-right: 1.5rem;
}

.oci-newsletter-form .wpforms-field-container input[type="email"] {
    background: rgba(255,255,255,.65);
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
}

.oci-newsletter-form .wpforms-field-container input[type="email"]::placeholder {
    text-transform: uppercase;
    font-weight: bold;
    color: black;
}

.oci-newsletter-form .wpforms-submit-container{
width: 20%;
}

.oci-newsletter-form .wpforms-submit-container button {
    background: var(--wp--preset--color--primary);
    color: white;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
}

.oci-newsletter-form .wpforms-field-email input {
max-width: 100%;
}

.oci-newsletter-form .wpforms-field-email {
    display: flex;
    flex-direction: column;
}

.wp-block-site-logo img {
    max-width: 120px;
}

@media screen and (max-width: 768px) {
    .wp-block-site-logo img {
        max-width: 100px;
    }

    .newsletter-block .wp-block-heading {
        font-size: 2rem !important;
    }

    .oci-newsletter-form form {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .oci-newsletter-form .wpforms-field-container {
        width: 100%;
        margin-right: 0;
    }
}

.oci-contact-form label,
.oci-contact-form legend {
    display: none;

}

.oci-contact-form .wpforms-field {
    display: flex;
    margin-bottom: 1rem;
    flex-direction: column;
}

.oci-contact-form .wpforms-field input[type="text"],
.oci-contact-form .wpforms-field input[type="email"],
.oci-contact-form .wpforms-field input[type="tel"],
.oci-contact-form .wpforms-field textarea {
    background-color: #f2f2f2;
    padding: 1rem;
    border: 1px solid #DDDDDD;
}

.oci-contact-form .wpforms-field textarea {
    min-height: 100px;
}

.oci-contact-form .wpforms-field input::placeholder,
.oci-contact-form .wpforms-field textarea::placeholder {
    text-transform: uppercase;
    font-weight: bold;
    color: rgb(176, 176, 176);
}

.oci-contact-form .wpforms-field input:focus-visible,
.oci-contact-form .wpforms-field textarea:focus-visible,
.oci-contact-form .wpforms-field :focus-visible {
    outline: 1px solid var(--wp--preset--color--primary);
}

.oci-contact-form select {
    appearance: none;
    background: white;
    width: 100%;
    background-color: #f2f2f2;
    padding: 1rem;
    padding-right: 2.5rem;
    border: 1px solid #DDDDDD;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.oci-contact-form select option.placeholder {
    color: red;
}


.oci-contact-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.oci-contact-form fieldset .wpforms-field-row {
    display: flex;
    gap: 1rem;
    flex-direction: row;
}



.oci-contact-form fieldset .wpforms-field-row-block {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.oci-contact-form .wpforms-submit-container button[type="submit"] {
    appearance: none;
    background: var(--wp--preset--color--primary);
    color: white;
    text-transform: uppercase;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

@media screen and (max-width: 500px) {
    .oci-contact-form fieldset .wpforms-field-row {
        flex-direction: column;
    }
}