@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);.content-block__button,.form__input {
    font-family: Inter,sans-serif;
    transition: .15s
}

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

body {
    font-family: Inter,sans-serif;
    font-weight: 500;
    background: #f8f8f8;
    color: #535353
}

h1,h2,h3,h4,h5,h6,p {
    cursor: default!important
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.container__inner {
    max-width: 380px
}

.header__block {
    display: flex;
    justify-content: center;
    padding-bottom: 15px
}

.header-block__logo {
    width: 180px
}

.content__block {
    padding: 25px 20px
}

.content-qr__block {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeholderShimmer;
    animation-timing-function: linear;
    background: linear-gradient(to right,#eee 8%,#fff 18%,#eee 33%);
    background-size: 1000px 104px;
    box-shadow: 0 0 15px rgba(1,1,1,.1);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 25px
}

.content-qr__image {
    max-width: 260px;
    filter: blur(3px);
    opacity: .25
}

.content-block__text {
    text-align: center
}

.warning__block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px
}

.warning-block__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.warning-block__icon {
    width: 75px;
    height: 75px;
    margin-bottom: 20px
}

.warning-block__heading {
    font-size: 20px;
    color: #f05142;
    margin-bottom: 10px
}

.warning-block__text {
    line-height: 24px
}

.warning-block__subtext {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-top: 15px;
    opacity: .5
}

.content-block__button {
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    border: none;
    outline: 0;
    background: #000;
    color: #fff;
    border-radius: 15px;
    padding: 15px 18px;
    cursor: pointer
}

.content-block__button:hover {
    background: #414141
}

.content-block__button:disabled {
    opacity: .5;
    pointer-events: none
}

.form__block {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.form-block__inner {
    display: flex;
    flex-direction: column
}

.form-block__heading {
    text-align: center;
    font-size: 20px;
    color: #111;
    margin-bottom: 10px
}

.form-block__text {
    text-align: center;
    line-height: 24px
}

.form-block__label {
    font-size: 14px;
    opacity: .75;
    margin-bottom: 10px
}

.form__input {
    font-size: 14px;
    line-height: 18px;
    background: #f3f3f3;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    resize: none;
    padding: 13px
}

.form__input:focus {
    border-color: #5570ff;
    outline: 0
}

.form-block__error {
    display: none;
    font-size: 14px;
    color: #f05142;
    margin-top: 15px
}

@keyframes placeholderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}
