@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap);.container,.content {
    height: 100%;
    display: flex
}

.content__button,body {
    font-family: Roboto,sans-serif
}

body {
    height: 100vh;
    overflow-y: hidden;
    font-weight: 400;
    background: #17171d;
    color: #fff
}

.container {
    flex-direction: column;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px
}

.header {
    display: flex;
    justify-content: center
}

.header__logotype {
    max-width: 160px
}

.content {
    justify-content: center;
    align-items: center
}

.content__inner {
    text-align: center
}

.content__image {
    width: 240px;
    height: 240px
}

.content__heading {
    font-size: 22px;
    font-weight: 500;
    cursor: default;
    margin-bottom: 15px
}

.content__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: default;
    opacity: .7
}

.content__button {
    min-width: 240px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #17171d;
    padding: 12px 25px;
    background: #ff842d;
    border: none;
    outline: 0;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 35px
}

.content__button:hover {
    opacity: .75
}

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

.content__textarea {
    width: 90%;
    font-size: 13px;
    font-family: monospace;
    background: 0 0;
    line-height: 24px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    resize: none;
    padding: 10px;
    margin-top: 20px
}

.content__textarea:focus {
    border: 1px solid rgba(255,255,255,.4);
    outline: 0
}

.content__error-label {
    display: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #c0392b;
    margin-top: 15px;
    margin-bottom: -15px
}

@media (max-height: 620px) {
    .content__image {
        width:180px;
        height: 180px
    }

    .content__text {
        margin: 0 25px
    }
}
