* {
    margin: 0;
    padding: 0;
}

body {

    font-family: Helvetica;
}

.wrapper {
    padding: 30px 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.content {
    border-radius: 8px;
    background-color: #f8f8f8;
    padding: 24px 16px;
    margin-top: 24px
}

.main-title {
    font-size: 21px;
    margin-bottom: 2rem
}

.operation-time {
    color: #333;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    text-align: center;
}

.cancel {
    color: #f16e00;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
    padding-bottom: 1rem
}

.spinner {
    text-align: center;
}

.button-wrapper {
    text-align: center;
}

.button {
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    padding: 0;
    border: 0 none;
    border-radius: 2px;
    font-size: 1rem;
    margin: 1rem 0;
    display: block;
}

.button--main {
    color: #fff;
    background-color: #f16e00;
    height: 54px;
    line-height: 54px;
}

.button--link {
    background-color: transparent;
    color: #f16e00;
    margin-top: 2rem;
    display: block;
}

.button--link:hover {
    text-decoration: underline;
}

.footer {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    margin-top: 1rem;
    color: #666666;
}

.footer img {
    margin-right: 0.5rem
}

@media only screen and (min-width: 768px) {
    .inputs {
       margin: auto;
        width: 36.8%;
    }
}