body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}
.logo {
    height: 64px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1), 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.logo img {
    height: 48px;
    margin: 8px 0 8px 48px;
}
.main {
    margin-left: 56px;
    font-family: Roboto;
    font-style: normal;
}
.main h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 42px;
    margin: 56px 0 50px 0;
}
.main form label {
    display: block;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 2px;
}
.main form #code {
    border: 1px solid #596D7C;
    box-sizing: border-box;
    border-radius: 1px;
    width: 280px;
    height: 32px;
    outline: none;
    padding: 6px 8px;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
}

.main form #code:focus {
    border-radius: 1px;
}
.main form #code::placeholder {
    color: #999;
    opacity: 1;
}
.main form .submit {
    border: 1px solid #522E97;
    background: #522E97;
    border-radius: 2px;
    width: 97px;
    height: 32px;
    margin-left: 40px;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}
.main .verify {
    margin-top: 64px;
}
.main .verify p {
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    color: #596D7C;
    margin-bottom: 16px;
}
.main .verify p span {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    margin-right: 16px;
}
.main .verify p.confirmed::before {
    background-image: url('../images/check.svg');
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    position: absolute;
    height: 20px;
    width: 20px;
    margin-left: -25px;
    background-size: 75%;
    margin-top: 3px;
}
.main .verify p.confirmed {
    background: #E0FFDD;
    border-radius: 1px;
    width: 377px;
    height: 30px;
    margin-top: 24px;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: #596D7C;
    padding-top: 8px;
    padding-left: 40px;
}
.main .verify p.not-confirmed::before {
    background-image: url('../images/alert-triangle.svg');
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    position: absolute;
    background-size: 20px;
    height: 20px;
    width: 20px;
    margin-left: -30px;
}
.main .verify p.not-confirmed {
    background: #FFDDDD;
    border-radius: 1px;
    width: 377px;
    height: 30px;
    margin-top: 24px;
    font-weight: normal;
    font-size: 12px;
    line-height: 20px;
    color: #596D7C;
    padding-top: 8px;
    padding-left: 40px;
}
@media (max-width: 520px) {
    .logo img {
        margin: 8px auto;
        display: block;
    }
    .main {
        margin: 0 auto;
        width: 350px;
    }
    .main h1 {
        font-size: 29px;
        margin: 46px 0 40px 0;
        text-align: center;
    }
    .main form #code {
        width: 220px;
    }
    .main form .submit {
        margin: 0;
        float: right;
    }
    .main .verify p.confirmed, .main .verify p.not-confirmed {
        width: 310px;
    }
}