html {
    background-color: #f4f5f5;
}

div {
    display: block;
    unicode-bidi: isolate;
}

.main {
    position: absolute;
    left: 50%;
    top: 30%;
    max-width: 624px;
    width: 86%;
    background-color: #fff;
    transform: translateX(-50%);
    padding: 0px 40px 0;
    box-sizing: border-box;
    border: 1px solid #e5e6eb;
}

img {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -40px;
    left: 0;
}

.title {
    padding: 16px 0 24px;
    border-bottom: 1px solid #e5e6eb;
    position: relative;
}

.link {
    color: gray;
}

.button {
    background: #3CAFF1;
    border: 1px solid #e5e6eb;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    float: right;
    margin-bottom: 24px;
    margin-top: 20px;
    height: 32px;
    padding: 0 14px;
    cursor: pointer;
    outline: 0;
}

.button:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}