.w-card {
    width: 100%;
    max-width: var(--w-card-width);
    justify-self: end;
    align-self: center;
    padding: 28px 28px 24px;
    background: #fff;
    border: 1px solid #e1e6e3;
    border-radius: var(--w-radius);
    box-shadow: var(--w-shadow);
}
.w-card h2 {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.8px;
}
.w-card form {
    display: grid;
    gap: 13px;
}
.w-field {
    display: grid;
    gap: 7px;
    color: var(--w-text);
    font-size: 13px;
    font-weight: 750;
}
.w-field input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    outline: none;
    background: #fff;
    color: var(--w-text);
    border: 1px solid #cfd7d2;
    border-radius: 9px;
    font-weight: 400;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.w-field input::placeholder { color: #8b9490; }
.w-field input:focus {
    border-color: var(--w-green);
    box-shadow: 0 0 0 4px rgba(22, 92, 58, .09);
}
.w-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    color: #4c5550;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.38;
}
.w-consent input { margin: 2px 0 0; }
.w-submit {
    height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 0;
    border-radius: 9px;
    background: var(--w-green);
    color: #fff;
    font-size: 18px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}
.w-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 8px 18px rgba(16, 71, 46, .16);
}
.w-submit:disabled {
    opacity: .62;
    cursor: wait;
    transform: none;
    box-shadow: none;
}
.w-privacy {
    margin: 0;
    text-align: center;
    color: #707a74;
    font-size: 10.8px;
    line-height: 1.35;
}
.w-form-message {
    min-height: 18px;
    text-align: center;
    font-size: 12px;
}
.w-form-message.is-error { color: #b42318; }
.w-form-message.is-success { color: var(--w-green); font-weight: 750; }
.w-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
