.powermail_form label {
    display: block;
    margin-bottom: 6px;
    font: inherit;
}

.powermail_form input[type="text"],
.powermail_form input[type="email"],
.powermail_form input[type="tel"],
.powermail_form textarea {
    appearance: none;
    box-shadow: none;
    outline: none;
    width: 100%;
    display: block;
    border: 1px solid var(--color-cyan);
    transition: border-color var(--transition-standard);
    border-radius: 2px;
    padding: 5px 8px;
}

.powermail_form input[type="text"]:hover,
.powermail_form input[type="text"]:focus,
.powermail_form input[type="email"]:hover,
.powermail_form input[type="email"]:focus,
.powermail_form input[type="tel"]:hover,
.powermail_form input[type="tel"]:focus,
.powermail_form textarea:hover,
.powermail_form textarea:focus {
    border-color: var(--ci-light);
}

.powermail_fieldwrap {
    margin-bottom: 20px;
}

form .validation-error {
    background-color: #DA5D5D;
    color: #FFF;
    padding: 4px 8px;
}

form textarea.invalid,
form input.invalid {
    border-color: #DA5D5D !important;
}

.form-check input[type="checkbox"] {
    opacity: 0;
    z-index: -1;
    position: absolute;
}


.form-check label {
    position: relative;
    padding-left: 36px;
    cursor: pointer;
}

.form-check label::before {
    content: ' ';
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid var(--color-cyan);
    position: absolute;
    left: 0;
    top: 0;
}

.form-check input[type="checkbox"]:checked+label::before {
    border-color: #000;
    background: transparent url(/public/icons/check.svg) no-repeat center;
    background-size: 18px auto;
}