/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
}

body {
    width: 100%;
    min-height: 100vh;

    font-family:
        Arial,
        "Helvetica Neue",
        Helvetica,
        sans-serif;

    background: #ffffff;

    color: #123c78;

    overflow-x: hidden;
}


/* =========================================================
   PAGE
========================================================= */

.page {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffffff 58%,
            #f5faff 76%,
            #dceeff 100%
        );
}


/* =========================================================
   BACKGROUND WAVES
========================================================= */

.background-waves {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 390px;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}

.wave {
    position: absolute;

    left: -10%;
    width: 120%;

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

    transform: rotate(-4deg);
}


/* lightest wave */

.wave-1 {
    bottom: -205px;

    height: 350px;

    background: rgba(255, 255, 255, 0.85);

    box-shadow:
        0 -15px 50px rgba(82, 157, 235, 0.15);
}


/* pale blue */

.wave-2 {
    bottom: -240px;

    height: 370px;

    background:
        linear-gradient(
            180deg,
            #dff0ff 0%,
            #c8e4ff 100%
        );
}


/* medium blue */

.wave-3 {
    bottom: -300px;

    height: 390px;

    background:
        linear-gradient(
            180deg,
            #a9d4ff 0%,
            #5ba4f2 100%
        );

    transform:
        rotate(4deg)
        translateX(-2%);
}


/* dark blue */

.wave-4 {
    bottom: -365px;

    height: 420px;

    background:
        linear-gradient(
            180deg,
            #267ee5 0%,
            #0757c9 100%
        );

    transform:
        rotate(-5deg)
        translateX(2%);
}


/* =========================================================
   MAIN
========================================================= */

.verification-page {
    position: relative;

    z-index: 2;

    width: min(100%, 920px);

    min-height: 100vh;

    margin: 0 auto;

    padding:
        42px
        40px
        120px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.logo-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 70px;
}

.leumi-logo {
    display: flex;

    align-items: center;

    gap: 27px;

    direction: ltr;
}

.leumi-logo img{
    width: 50%;
    margin: 0 auto;
}

/* logo square */

.leumi-logo__mark {
    position: relative;

    width: 136px;
    height: 105px;

    overflow: hidden;

    border-radius: 9px;

    background: #0648ad;

    box-shadow:
        0 4px 12px rgba(0, 74, 180, 0.12);
}


/* upper blue */

.leumi-logo__top {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 52%;

    background: #1594e9;
}


/* bottom blue */

.leumi-logo__bottom {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 50%;

    background: #0648ad;
}


/* white wave */

.leumi-logo__wave {
    position: absolute;

    left: -8%;

    top: 45px;

    width: 116%;
    height: 32px;

    background: #ffffff;

    border-radius:
        50%
        50%
        0
        0 / 100%
        100%
        0
        0;

    transform: rotate(-1deg);
}


/* logo text */

.leumi-logo__text {
    text-align: left;

    color: #06429a;

    line-height: 0.85;
}

.leumi-logo__hebrew {
    direction: rtl;

    font-size: 51px;

    font-weight: 700;

    letter-spacing: -1px;
}

.leumi-logo__english {
    margin-top: 8px;

    font-size: 49px;

    font-weight: 700;

    letter-spacing: -2px;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    width: 100%;

    text-align: center;

    margin-bottom: 53px;
}

.intro h1 {
    color: #0d3d7e;

    font-size: clamp(38px, 5vw, 59px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.5px;

    margin-bottom: 20px;
}

.intro p {
    color: #57749c;

    font-size: clamp(22px, 3vw, 31px);

    line-height: 1.35;

    font-weight: 400;
}


/* =========================================================
   ID CARD
========================================================= */

.id-card {
    width: 88%;

    min-height: 160px;

    padding:
        27px
        47px;

    border:
        1.5px solid
        rgba(105, 174, 231, 0.45);

    border-radius: 33px;

    background:
        linear-gradient(
            110deg,
            rgba(247, 250, 255, 0.95),
            rgba(241, 247, 255, 0.82)
        );

    box-shadow:
        0 10px 30px rgba(55, 142, 220, 0.09);

    text-align: left;

    direction: rtl;

    margin-bottom: 73px;
}

.id-card__label {
    color: #25456f;

    font-size: 27px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.id-card__number {
    color: #0c3c7b;

    direction: ltr;

    text-align: left;

    font-size: 45px;

    font-weight: 400;

    letter-spacing: 0.5px;
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.success-section {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-bottom: 53px;
}

.success-circle {
    position: relative;

    width: 306px;
    height: 306px;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at 35% 25%,
            #2c9aff 0%,
            #0879ec 35%,
            #0754d4 72%,
            #0747c4 100%
        );

    border:
        4px solid
        rgba(255, 255, 255, 0.8);

    box-shadow:

        0 0 0 8px
        rgba(116, 197, 255, 0.16),

        0 0 25px
        rgba(0, 129, 255, 0.45),

        0 0 65px
        rgba(0, 129, 255, 0.32),

        inset 0 0 20px
        rgba(255, 255, 255, 0.2);
}


/* inner ring */

.success-circle__inner {
    width: 92%;

    height: 92%;

    border-radius: 50%;

    border:
        2px solid
        rgba(255, 255, 255, 0.38);

    display: flex;

    justify-content: center;
    align-items: center;

    box-shadow:
        inset 0 0 15px
        rgba(255, 255, 255, 0.12);
}


/* =========================================================
   CHECKMARK
========================================================= */

.checkmark {
    position: relative;

    display: block;

    width: 112px;
    height: 65px;

    border-left:
        19px solid
        #ffffff;

    border-bottom:
        19px solid
        #ffffff;

    border-radius: 4px;

    transform:
        rotate(-45deg)
        translate(3px, -8px);

    filter:
        drop-shadow(
            0 4px 7px
            rgba(0, 55, 150, 0.15)
        );
}


/* =========================================================
   SUCCESS TEXT
========================================================= */

.success-text {
    width: 100%;

    text-align: center;

    margin-bottom: 57px;
}

.success-text h2 {
    color: #0d3d7e;

    font-size: clamp(39px, 5vw, 57px);

    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 24px;

    letter-spacing: -1px;
}

.success-text p {
    color: #254d83;

    font-size: clamp(22px, 3vw, 30px);

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    width: 92%;

    min-height: 185px;

    display: flex;

    align-items: center;

    justify-content: space-around;

    direction: rtl;

    padding:
        20px
        35px;

    border:
        1.5px solid
        rgba(255, 255, 255, 0.75);

    border-radius: 34px;

    background:
        rgba(255, 255, 255, 0.66);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 35px
        rgba(45, 127, 207, 0.12);

    margin-bottom: 65px;
}


/* feature */

.feature {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #0753b7;
}


/* icon */

.feature__icon {
    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
}

.feature__icon svg {
    width: 100%;
    height: 100%;

    color: #0754b8;
}

.feature__icon--digital {
    width: 92px;
}


/* text */

.feature__text {
    color: #173f72;

    font-size: 22px;

    line-height: 1.18;

    font-weight: 700;

    white-space: nowrap;
}


/* dividers */

.feature-divider {
    width: 1px;

    height: 125px;

    background:
        rgba(53, 111, 175, 0.32);

    flex-shrink: 0;
}


/* =========================================================
   BUTTON
========================================================= */

.button-wrapper {
    width: 100%;

    display: flex;

    justify-content: center;

    position: relative;

    z-index: 5;
}

.continue-button {
    position: relative;

    width: min(610px, 82%);

    min-height: 105px;

    border: none;

    border-radius: 60px;

    background:
        linear-gradient(
            180deg,
            #1269df 0%,
            #0753c9 100%
        );

    color: #ffffff;

    font-family: inherit;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow:
        0 12px 30px
        rgba(0, 83, 203, 0.25),

        inset 0 1px 0
        rgba(255, 255, 255, 0.16);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.continue-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 36px
        rgba(0, 83, 203, 0.32),

        inset 0 1px 0
        rgba(255, 255, 255, 0.2);
}

.continue-button:active {
    transform: translateY(1px);
}


/* button text */

.continue-button__text {
    font-size: 34px;

    font-weight: 700;

    line-height: 1;
}


/* arrow */

.continue-button__arrow {
    position: absolute;

    right: 36%;

    top: 50%;

    transform:
        translateY(-53%)
        rotate(180deg);

    font-family: Arial, sans-serif;

    font-size: 64px;

    font-weight: 300;

    line-height: 0.6;
}


/* =========================================================
   DESKTOP HEIGHT OPTIMIZATION
========================================================= */

@media (min-width: 769px) {

    .verification-page {
        padding-top: 38px;
    }

    .logo-wrapper {
        margin-bottom: 66px;
    }

    .success-circle {
        width: 300px;
        height: 300px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .verification-page {
        padding:
            28px
            22px
            70px;
    }

    .logo-wrapper {
        margin-bottom: 42px;
    }

    .leumi-logo {
        gap: 18px;
    }

    .leumi-logo__mark {
        width: 105px;
        height: 81px;
    }

    .leumi-logo__wave {
        top: 34px;
        height: 24px;
    }

    .leumi-logo__hebrew {
        font-size: 40px;
    }

    .leumi-logo__english {
        font-size: 38px;
    }

    .intro {
        margin-bottom: 38px;
    }

    .id-card {
        width: 100%;

        min-height: 135px;

        padding:
            23px
            30px;

        border-radius: 25px;

        margin-bottom: 55px;
    }

    .id-card__label {
        font-size: 23px;

        margin-bottom: 14px;
    }

    .id-card__number {
        font-size: 37px;
    }

    .success-circle {
        width: 245px;
        height: 245px;
    }

    .checkmark {
        width: 90px;
        height: 54px;

        border-left-width: 16px;
        border-bottom-width: 16px;
    }

    .success-section {
        margin-bottom: 42px;
    }

    .success-text {
        margin-bottom: 42px;
    }

    .features {
        width: 100%;

        padding:
            18px
            12px;

        min-height: 155px;

        border-radius: 27px;

        margin-bottom: 43px;
    }

    .feature__text {
        font-size: 17px;
    }

    .feature__icon {
        width: 51px;
        height: 51px;

        margin-bottom: 8px;
    }

    .feature__icon--digital {
        width: 72px;
    }

    .feature-divider {
        height: 100px;
    }

    .continue-button {
        width: 90%;

        min-height: 82px;
    }

    .continue-button__text {
        font-size: 28px;
    }

    .continue-button__arrow {
        right: 28%;

        font-size: 54px;
    }

    .background-waves {
        height: 300px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .verification-page {
        padding:
            22px
            16px
            55px;
    }


    /* logo */

    .logo-wrapper {
        margin-bottom: 35px;
    }

    .leumi-logo {
        gap: 12px;
    }

    .leumi-logo__mark {
        width: 76px;
        height: 59px;

        border-radius: 6px;
    }

    .leumi-logo__wave {
        top: 25px;

        height: 18px;
    }

    .leumi-logo__hebrew {
        font-size: 29px;

        letter-spacing: -1px;
    }

    .leumi-logo__english {
        margin-top: 5px;

        font-size: 28px;
    }


    /* intro */

    .intro {
        margin-bottom: 30px;
    }

    .intro h1 {
        font-size: 31px;

        letter-spacing: -0.5px;

        margin-bottom: 12px;
    }

    .intro p {
        font-size: 18px;

        line-height: 1.45;
    }


    /* id */

    .id-card {
        min-height: 112px;

        padding:
            18px
            21px;

        border-radius: 21px;

        margin-bottom: 42px;
    }

    .id-card__label {
        font-size: 18px;

        margin-bottom: 10px;
    }

    .id-card__number {
        font-size: 29px;
    }


    /* success */

    .success-section {
        margin-bottom: 35px;
    }

    .success-circle {
        width: 185px;
        height: 185px;

        border-width: 3px;

        box-shadow:
            0 0 0 6px
            rgba(116, 197, 255, 0.16),

            0 0 20px
            rgba(0, 129, 255, 0.4),

            0 0 45px
            rgba(0, 129, 255, 0.25);
    }

    .checkmark {
        width: 70px;
        height: 43px;

        border-left-width: 12px;
        border-bottom-width: 12px;
    }


    /* text */

    .success-text {
        margin-bottom: 34px;
    }

    .success-text h2 {
        font-size: 31px;

        letter-spacing: -0.5px;

        margin-bottom: 14px;
    }

    .success-text p {
        font-size: 18px;

        line-height: 1.55;
    }


    /* features */

    .features {
        min-height: 120px;

        padding:
            13px
            5px;

        border-radius: 21px;

        margin-bottom: 34px;
    }

    .feature__icon {
        width: 39px;
        height: 39px;

        margin-bottom: 6px;
    }

    .feature__icon--digital {
        width: 57px;
    }

    .feature__text {
        font-size: 12px;

        line-height: 1.25;
    }

    .feature-divider {
        height: 78px;
    }


    /* button */

    .continue-button {
        width: 92%;

        min-height: 67px;

        border-radius: 50px;
    }

    .continue-button__text {
        font-size: 23px;
    }

    .continue-button__arrow {
        right: 25%;

        font-size: 46px;
    }


    /* waves */

    .background-waves {
        height: 240px;
    }

    .wave-1 {
        bottom: -145px;
        height: 270px;
    }

    .wave-2 {
        bottom: -180px;
        height: 290px;
    }

    .wave-3 {
        bottom: -225px;
        height: 315px;
    }

    .wave-4 {
        bottom: -270px;
        height: 340px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .verification-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .intro h1 {
        font-size: 27px;
    }

    .intro p {
        font-size: 16px;
    }

    .id-card__label {
        font-size: 16px;
    }

    .id-card__number {
        font-size: 25px;
    }

    .success-circle {
        width: 165px;
        height: 165px;
    }

    .success-text h2 {
        font-size: 27px;
    }

    .success-text p {
        font-size: 16px;
    }

    .feature__text {
        font-size: 10px;
    }

    .feature-divider {
        height: 70px;
    }

    .continue-button__text {
        font-size: 21px;
    }
}
/* =========================================================
   ID INPUT
========================================================= */

.id-card__number {
    direction: ltr;
    text-align: left;
}

.id-card__number input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: #0c3c7b;

    font-family: inherit;
    font-size: 45px;
    font-weight: 400;

    letter-spacing: 1px;

    direction: ltr;
    text-align: left;
}

.id-card__number input::placeholder {
    color: #8ba4c3;
    opacity: 1;
}

.id-card__number input:focus::placeholder {
    opacity: 0.45;
}


/* =========================================================
   STATUS
========================================================= */

.verification-status {
    display: flex;

    justify-content: center;
    align-items: center;

    margin-bottom: 53px;
}


/* =========================================================
   STATUS CIRCLE
========================================================= */

.status-circle {
    position: relative;

    width: 306px;
    height: 306px;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.25s ease;
}

.status-circle__inner {
    width: 92%;
    height: 92%;

    border-radius: 50%;

    display: flex;

    justify-content: center;
    align-items: center;

    border: 2px solid rgba(255,255,255,.38);
}


/* =========================================================
   ICON BASE
========================================================= */

.status-icon {
    position: absolute;

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    transform: scale(.75);

    transition:
        opacity .25s ease,
        transform .3s ease;
}


/* =========================================================
   WAITING
========================================================= */

.verification-status--waiting .status-circle {

    background:
        radial-gradient(
            circle at 35% 25%,
            #dceeff 0%,
            #a9d7ff 38%,
            #75b7f4 72%,
            #5499e5 100%
        );

    border: 4px solid rgba(255,255,255,.85);

    box-shadow:
        0 0 0 8px rgba(116,197,255,.12),
        0 0 35px rgba(60,150,230,.25),
        inset 0 0 25px rgba(255,255,255,.35);
}

.verification-status--waiting .status-icon--waiting {
    opacity: 1;
    transform: scale(1);
}


/* waiting icon */

.status-icon--waiting span {
    width: 76px;
    height: 76px;

    border: 7px solid rgba(255,255,255,.95);

    border-radius: 50%;

    position: relative;
}

.status-icon--waiting span::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 6px;
    height: 25px;

    border-radius: 5px;

    background: #ffffff;

    transform:
        translate(-50%, -100%);
}

.status-icon--waiting span::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 6px;
    height: 20px;

    border-radius: 5px;

    background: #ffffff;

    transform:
        translate(0, -5%)
        rotate(-35deg);

    transform-origin: top;
}


/* =========================================================
   SUCCESS
========================================================= */

.verification-status--success .status-circle {

    background:
        radial-gradient(
            circle at 35% 25%,
            #2c9aff 0%,
            #0879ec 35%,
            #0754d4 72%,
            #0747c4 100%
        );

    border: 4px solid rgba(255,255,255,.8);

    box-shadow:
        0 0 0 8px rgba(116,197,255,.16),
        0 0 25px rgba(0,129,255,.45),
        0 0 65px rgba(0,129,255,.32),
        inset 0 0 20px rgba(255,255,255,.2);
}

.verification-status--success .status-icon--success {
    opacity: 1;
    transform: scale(1);
}


/* success check */

.status-icon--success .checkmark {
    position: relative;

    display: block;

    width: 112px;
    height: 65px;

    border-left:
        19px solid #ffffff;

    border-bottom:
        19px solid #ffffff;

    border-radius: 4px;

    transform:
        rotate(-45deg)
        translate(3px, -8px);

    filter:
        drop-shadow(
            0 4px 7px
            rgba(0,55,150,.15)
        );
}


/* =========================================================
   ERROR
========================================================= */

.verification-status--error .status-circle {

    background:
        radial-gradient(
            circle at 35% 25%,
            #ff7373 0%,
            #ed3d4c 40%,
            #c81f35 75%,
            #a9162b 100%
        );

    border: 4px solid rgba(255,255,255,.82);

    box-shadow:
        0 0 0 8px rgba(255,100,110,.13),
        0 0 28px rgba(220,40,60,.4),
        0 0 60px rgba(220,40,60,.25),
        inset 0 0 20px rgba(255,255,255,.16);
}

.verification-status--error .status-icon--error {
    opacity: 1;
    transform: scale(1);
}


/* error X */

.status-icon--error {
    position: relative;
}

.error-line {
    position: absolute;

    width: 105px;
    height: 18px;

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 3px 8px rgba(100,0,0,.15);
}

.error-line--1 {
    transform: rotate(45deg);
}

.error-line--2 {
    transform: rotate(-45deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .status-circle {
        width: 245px;
        height: 245px;
    }

    .status-icon--success .checkmark {
        width: 90px;
        height: 54px;

        border-left-width: 16px;
        border-bottom-width: 16px;
    }

    .status-icon--waiting span {
        width: 62px;
        height: 62px;

        border-width: 6px;
    }

    .error-line {
        width: 85px;
        height: 15px;
    }

    .id-card__number input {
        font-size: 37px;
    }
}


@media (max-width: 480px) {

    .status-circle {
        width: 185px;
        height: 185px;

        border-width: 3px;
    }

    .status-icon--success .checkmark {
        width: 70px;
        height: 43px;

        border-left-width: 12px;
        border-bottom-width: 12px;
    }

    .status-icon--waiting span {
        width: 50px;
        height: 50px;

        border-width: 5px;
    }

    .status-icon--waiting span::before {
        width: 5px;
        height: 17px;
    }

    .status-icon--waiting span::after {
        width: 5px;
        height: 14px;
    }

    .error-line {
        width: 68px;
        height: 12px;
    }

    .id-card__number input {
        font-size: 29px;
    }
}

.id-card__number input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;

    color: #0c3c7b;
    font-family: inherit;
    font-size: 45px;

    direction: ltr;
    text-align: left;
}

.id-card__number input::placeholder {
    direction: rtl;
    text-align: right;
    color: #8ba4c3;
}

/* =========================================================
   STATUS TEXT
========================================================= */

.status-text {
    width: 100%;
    text-align: center;

    margin-bottom: 57px;
}


/* всі повідомлення приховані */

.status-message {
    display: none;
}


/* показуємо потрібний */

.verification-status--waiting ~ .status-text .status-message--waiting,
.verification-status--checking ~ .status-text .status-message--checking,
.verification-status--success ~ .status-text .status-message--success,
.verification-status--error ~ .status-text .status-message--error {
    display: block;
}


.status-message h2 {
    color: #0d3d7e;

    font-size: clamp(39px, 5vw, 57px);

    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 24px;

    letter-spacing: -1px;
}


.status-message p {
    color: #254d83;

    font-size: clamp(22px, 3vw, 30px);

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================================
   INPUT STATES
========================================================= */

.id-card {
    border: 1.5px solid rgba(105, 174, 231, 0.45);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* default / typing */

.id-card.input-typing {
    border-color: rgba(105, 174, 231, 0.45);

    box-shadow:
        0 10px 30px rgba(55, 142, 220, 0.09);
}


/* success */

.id-card.input-success {
    border-color: #35b86b;

    box-shadow:
        0 0 0 2px rgba(53, 184, 107, 0.08),
        0 10px 30px rgba(53, 184, 107, 0.13);
}


/* error */

.id-card.input-error {
    border-color: #e04455;

    box-shadow:
        0 0 0 2px rgba(224, 68, 85, 0.07),
        0 10px 30px rgba(224, 68, 85, 0.12);
}


/* =========================================================
   CHECKING
========================================================= */

.verification-status--checking .status-circle {

    background:
        radial-gradient(
            circle at 35% 25%,
            #4aa7f5 0%,
            #167fdc 40%,
            #0964c9 75%,
            #0754b8 100%
        );

    border: 4px solid rgba(255,255,255,.82);

    box-shadow:
        0 0 0 8px rgba(116,197,255,.14),
        0 0 30px rgba(0,129,255,.35),
        0 0 60px rgba(0,129,255,.2);
}


/* =========================================================
   CHECKING SPINNER
========================================================= */

.status-icon--checking {
    flex-direction: column;
    gap: 16px;
}

.verification-status--checking .status-icon--checking {
    opacity: 1;
    transform: scale(1);
}


.checking-spinner {
    width: 78px;
    height: 78px;

    border-radius: 50%;

    border:
        7px solid
        rgba(255,255,255,.3);

    border-top-color: #ffffff;

    animation:
        checking-spin 0.8s linear infinite;
}


@keyframes checking-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   WAITING ICON
========================================================= */

.verification-status--waiting .status-icon--waiting {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.verification-status--success .status-icon--success {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   ERROR ICON
========================================================= */

.verification-status--error .status-icon--error {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .status-text {
        margin-bottom: 42px;
    }

    .status-message h2 {
        font-size: 31px;
    }

    .status-message p {
        font-size: 18px;
    }

    .checking-spinner {
        width: 62px;
        height: 62px;

        border-width: 6px;
    }

}


@media (max-width: 480px) {

    .status-text {
        margin-bottom: 34px;
    }

    .status-message h2 {
        font-size: 27px;

        margin-bottom: 14px;
    }

    .status-message p {
        font-size: 16px;
    }

    .checking-spinner {
        width: 50px;
        height: 50px;

        border-width: 5px;
    }

}