.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%;
    background-color: #f8f8f8;
    box-sizing: border-box;
    padding: 16px 8px;
    font-size: 12pt;
    font-family: sans-serif;
    border-bottom: 4px solid #f3f3f3;
}

.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: #319ed8;
}

.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 .checkboxgroup {
    display: block;
}



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

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