* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );

    color: #15171a;
}

.page {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;

    min-height: 100vh;

    padding:
        55px
        20px
        40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card {
    background: #fff;

    border: 1px solid #e9edf2;

    border-radius: 22px;

    padding:
        38px
        34px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, .06);
}

.brand {
    display: inline-flex;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .09em;

    color: #1769e0;

    background: #eef5ff;

    border-radius: 999px;

    padding:
        8px
        12px;

    margin-bottom: 22px;
}

h1 {
    margin: 0 0 10px;

    font-size: 29px;
    line-height: 1.15;

    letter-spacing: -.025em;
}

.subtitle {
    margin: 0;

    color: #68717c;

    line-height: 1.55;

    font-size: 15px;
}

.steps {
    display: grid;

    gap: 17px;

    margin-top: 33px;
    margin-bottom: 28px;
}

.step {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #5f6873;

    font-size: 14px;
    font-weight: 600;
}

.dot {
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: #dde3eb;

    box-shadow:
        0 0 0 5px #f5f7fa;
}

.step.active .dot {
    background: #1769e0;

    box-shadow:
        0 0 0 5px #edf4ff;
}

.progress-wrapper {
    height: 8px;

    overflow: hidden;

    border-radius: 999px;

    background: #eef1f5;
}

.progress {
    width: 0;
    height: 100%;

    background: #1769e0;

    border-radius: inherit;

    transition: width .25s ease;
}

.percent {
    margin-top: 10px;

    text-align: right;

    color: #7a828c;

    font-size: 13px;
    font-weight: 700;
}

.verification {
    margin-top: 28px;

    padding-top: 25px;

    border-top: 1px solid #edf0f3;
}

.verification strong {
    display: block;

    font-size: 16px;
}

.verification p {
    margin:
        5px
        0
        18px;

    color: #69727e;

    font-size: 13px;
}

button {
    width: 100%;

    border: 0;

    margin-top: 18px;

    border-radius: 12px;

    padding: 15px 20px;

    background: #1769e0;

    color: white;

    font-size: 15px;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform .15s ease,
        opacity .15s ease;
}

button:hover {
    opacity: .94;
}

button:active {
    transform: scale(.99);
}

.hidden {
    display: none;
}

.privacy {
    margin-top: 20px;

    padding:
        0
        18px;

    text-align: center;

    color: #818893;

    font-size: 11px;
    line-height: 1.55;
}

.privacy strong {
    color: #646c76;
}

.privacy p {
    margin-top: 5px;
}

@media (max-width: 600px) {

    .page {
        justify-content: flex-start;

        padding-top: 28px;
    }

    .card {
        border-radius: 18px;

        padding:
            28px
            21px;
    }

    h1 {
        font-size: 25px;
    }

}