.mlc-notify {
    display: flex;
    justify-content: center;
}

.mlc-notify__open,
.mlc-notify__submit {
    appearance: none;
    border: 2px solid #d6a51f;
    border-radius: 999px;
    background: #d6a51f;
    color: #171c21;
    cursor: pointer;
    font: 800 14px/1.1 inherit;
    letter-spacing: .045em;
    padding: 13px 22px;
    text-transform: uppercase;
}

.mlc-notify__open:hover,
.mlc-notify__open:focus-visible,
.mlc-notify__submit:hover,
.mlc-notify__submit:focus-visible {
    background: transparent;
    color: #d6a51f;
}

.mlc-notify__dialog {
    width: min(560px, calc(100% - 32px));
    max-height: min(760px, calc(100vh - 32px));
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid #505964;
    border-radius: 18px;
    background: #1d2329;
    color: #f4f0e6;
    padding: clamp(24px, 5vw, 42px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.mlc-notify__dialog::backdrop {
    background: rgba(9, 12, 15, .8);
    backdrop-filter: blur(5px);
}

.mlc-notify__dialog h2 {
    color: #f4f0e6;
    font-size: clamp(30px, 6vw, 44px);
    line-height: 1;
    margin: 7px 0 12px;
}

.mlc-notify__close {
    position: absolute;
    top: 14px;
    right: 17px;
    border: 0;
    background: transparent;
    color: #f4f0e6;
    cursor: pointer;
    font-size: 32px;
}

.mlc-notify__eyebrow {
    color: #d6a51f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mlc-notify__form {
    display: grid;
    gap: 17px;
    margin-top: 24px;
}

.mlc-notify__form > label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

.mlc-notify__form label span,
.mlc-notify__fine-print {
    color: #aeb5bc;
    font-size: 13px;
    font-weight: 400;
}

.mlc-notify__form input[type="email"],
.mlc-notify__form input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #59636d;
    border-radius: 8px;
    background: #12171c;
    color: #fff;
    font-size: 16px;
    padding: 12px 13px;
}

.mlc-notify__form fieldset {
    display: grid;
    gap: 10px;
    border: 0;
    margin: 0;
    padding: 0;
}

.mlc-notify__form legend {
    font-weight: 700;
    margin-bottom: 8px;
}

.mlc-notify__choice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid #48515b;
    border-radius: 10px;
    cursor: pointer;
    padding: 14px;
}

.mlc-notify__choice input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #d6a51f;
}

.mlc-notify__choice span {
    display: grid;
    gap: 3px;
}

.mlc-notify__choice strong {
    color: #f4f0e6;
    font-size: 15px;
}

.mlc-notify__choice small {
    color: #aeb5bc;
    line-height: 1.4;
}

.mlc-notify__feedback {
    min-height: 1.5em;
    margin: 0;
    color: #e8bb3f;
    font-weight: 700;
}

.mlc-notify__submit {
    border-radius: 8px;
}

.mlc-notify__submit:disabled {
    cursor: wait;
    opacity: .65;
}

.mlc-notify__fine-print {
    margin: 0;
    line-height: 1.45;
}

.mlc-notify__fine-print a {
    color: #d6a51f;
}

@media (max-width: 600px) {
    .mlc-notify__open {
        width: 100%;
    }
}

