.notification-page {
    position: relative;
    overflow: hidden;
    padding: 82px 0 96px;
    background: #f4f8fc;
}

.notification-page::before,
.notification-page::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.notification-page::before {
    width: 460px;
    height: 460px;
    top: -260px;
    left: -170px;
    background: rgba(52, 147, 207, .13);
}

.notification-page::after {
    width: 520px;
    height: 520px;
    right: -280px;
    bottom: -340px;
    background: rgba(33, 86, 143, .10);
}

.notification-wrap {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(20, 61, 107, .16);
}

.notification-intro {
    min-height: 100%;
    padding: 56px 52px;
    background: linear-gradient(145deg, #0f3d6b 0%, #176a9a 57%, #2290b9 100%);
    color: #fff;
}

.notification-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}

.notification-intro h1 {
    max-width: 420px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(33px, 4vw, 48px);
    line-height: 1.13;
}

.notification-intro > p {
    max-width: 445px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.72;
}

.notification-benefits {
    display: grid;
    gap: 14px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.notification-benefits li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(4, 39, 73, .16);
}

.notification-benefits i {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.notification-benefits strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 14px;
}

.notification-benefits span {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    line-height: 1.45;
}

.notification-form-panel {
    min-height: 100%;
    padding: 56px 52px;
    background: #fff;
}

.notification-form-head {
    margin-bottom: 29px;
}

.notification-form-head h2 {
    margin: 0 0 8px;
    color: #153d68;
    font-size: 30px;
}

.notification-form-head p {
    margin: 0;
    color: #64768a;
    line-height: 1.6;
}

.notification-field {
    margin-bottom: 20px;
}

.notification-field label {
    display: block;
    margin: 0 0 8px;
    color: #274a70;
    font-size: 14px;
    font-weight: 700;
}

.notification-control {
    position: relative;
}

.notification-control > i {
    position: absolute;
    top: 50%;
    left: 17px;
    z-index: 1;
    color: #6e8aa5;
    transform: translateY(-50%);
}

.notification-control input,
.notification-control select {
    width: 100%;
    height: 55px;
    padding: 0 16px 0 47px;
    border: 1px solid #d7e3ee;
    border-radius: 13px;
    outline: none;
    background: #fbfdff;
    color: #1f3d5e;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.notification-control select {
    cursor: pointer;
    appearance: auto;
}

.notification-control input:focus,
.notification-control select:focus {
    border-color: #238cc0;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(35, 140, 192, .12);
}

.notification-terms {
    margin: 25px 0 24px;
    padding: 16px;
    border-radius: 13px;
    background: #f2f7fb;
}

.notification-terms-main {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #52677e;
    font-size: 13px;
    line-height: 1.55;
}

.notification-terms-main input {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: #197aaf;
}

.notification-terms-main label {
    margin: 0;
    cursor: pointer;
}

.notification-terms-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 10px 0 0 27px;
    color: #1476a8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.notification-terms-link:hover {
    color: #0e527b;
    text-decoration: underline;
}

.notification-terms-link--pending {
    color: #8b9baa;
    font-weight: 500;
}

.notification-submit {
    display: inline-flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #0e6394, #18a1bd);
    box-shadow: 0 12px 22px rgba(22, 126, 174, .24);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s, filter .2s;
}

.notification-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(22, 126, 174, .32);
    filter: brightness(1.03);
}

.notification-submit:active {
    transform: translateY(0);
}

.notification-recaptcha {
    margin: 0 0 20px;
}

.notification-recaptcha .js-recaptcha {
    margin-top: 0 !important;
}

.notification-note {
    margin: 15px 0 0;
    color: #8a9aac;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 991px) {
    .notification-page {
        padding: 58px 0 72px;
    }

    .notification-intro,
    .notification-form-panel {
        padding: 42px 38px;
    }
}

@media (max-width: 575px) {
    .notification-page {
        padding: 34px 12px 50px;
    }

    .notification-wrap {
        border-radius: 20px;
    }

    .notification-intro,
    .notification-form-panel {
        padding: 34px 24px;
    }

    .notification-intro h1 {
        font-size: 34px;
    }

    .notification-form-head h2 {
        font-size: 27px;
    }
}
