.d4y-contact-form {
    position: relative;
}

.d4y-contact-form__field {
    margin-bottom: 15px;
}

.d4y-contact-form__field label,
.d4y-contact-form__consent label {
    display: block;
    margin-bottom: 6px;
    color: #202a3a;
    font-size: .9rem;
    font-weight: 750;
}

.d4y-contact-form__field input,
.d4y-contact-form__field textarea {
    display: block;
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #cfd5df;
    border-radius: 8px;
    background: #f8f9fb;
    color: #202a3a;
    font: inherit;
}

.d4y-contact-form__field textarea {
    min-height: 150px;
    resize: vertical;
}

.d4y-contact-form__field input:focus,
.d4y-contact-form__field textarea:focus {
    border-color: #e5007e;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(229, 0, 126, .13);
}

.d4y-contact-form__consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin: 4px 0 17px;
}

.d4y-contact-form__consent input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    accent-color: #e5007e;
}

.d4y-contact-form__consent label {
    margin: 0;
    color: #5d6878;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1.5;
}

.d4y-contact-form__submit {
    width: 100%;
    min-height: 48px;
    padding: 11px 16px;
    border: 0;
    border-radius: 9px;
    background: #e5007e;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 820;
    transition: background-color .18s ease, transform .18s ease;
}

.d4y-contact-form__submit:hover,
.d4y-contact-form__submit:focus-visible {
    background: #172f57;
    transform: translateY(-1px);
}

.d4y-contact-form__required {
    margin: 9px 0 0;
    color: #6a7380;
    font-size: .72rem;
}

.d4y-contact-form__notice {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 750;
}

.d4y-contact-form__notice--success {
    border: 1px solid #9bd2ae;
    background: #edf9f1;
    color: #1c6035;
}

.d4y-contact-form__notice--error {
    border: 1px solid #e5a6ac;
    background: #fff1f2;
    color: #8b2630;
}

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

.d4y-contact-form__captcha-note {
    margin: 14px 0 0;
    color: #68758a;
    font-size: 11px;
    line-height: 1.55;
}

.d4y-contact-form__captcha-note a {
    color: #be0050;
    text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .d4y-contact-form__submit {
        transition: none;
    }
}
