.io-contact-form {
    width: 100%;
    box-sizing: border-box;

}

.bod-modal-content .io-contact-form {
    color: white;
}

.io-contact-form .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.io-contact-form .content label.regular span {
    display: block;
}

.io-contact-form .content label.regular input,
.io-contact-form .content label.regular textarea,
.io-contact-form .content label.regular select {
    outline: none;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 8px;
    border: 4px solid white;
}

.io-contact-form .content label.regular input:focus,
.io-contact-form .content label.regular textarea:focus,
.io-contact-form .content label.regular select:focus {
    outline: none;
    border-color: #BA6B00;
}

.io-contact-form .content label.regular .hint {
    font-size: small;
    opacity: 0.7;
}

.io-contact-form .content label.regular textarea {
    min-height: 96px;
}

.io-contact-form .msgs:not(:empty) {
    padding-bottom: 24px;
}

.io-contact-form .msgs .error {
    background-color: rgb(255, 212, 212);
    border: 1px solid rgb(251, 85, 85);
    color: rgb(251, 85, 85);
    margin: 4px 0;
    padding: 16px;
}

.io-contact-form .msgs .info {
    background-color: rgb(241, 255, 212);
    border: 1px solid rgb(123, 166, 37);
    color: rgb(123, 166, 37);
    margin: 4px 0;
    padding: 16px;
}



.io-contact-form .content button {
    margin-left: auto;
    width: auto;
    color: var(--wp--preset--color--primary);
    border: none;
    background-color: white;
    border-radius: 2px;
    padding: 8px 16px;

}

.io-contact-form .content button:hover {
    opacity: 0.90;
}

.io-contact-form .content button:active {
    transform: scale3d(0.96, 0.96, 0.96)
}