.form__message,
.form__message-success,
.form__message-error {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0;
    padding: 22px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    min-height: 66px;
    box-sizing: border-box;
}

.form__message-success::before,
.form__message-error::before {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.form__message-success {
    color: #1f6b3a;
    background: #eaf7ef;
    border: 1px solid #bfe8cc;
}

.form__message-error {
    color: #9b1c1c;
    background: #fff0f0;
    border: 1px solid #f3b8b8;
}

.form__message--empty {
    visibility: hidden;
}

.form__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form__button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.footer__texts a{
    border-bottom: 1px dotted;
}
