body {
    font-family: 'Roboto', sans-serif;
}

.main {
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background: #36D1DC;
    background: -webkit-linear-gradient(to right, #5B86E5, #36D1DC);
    background: linear-gradient(to right, #5B86E5, #36D1DC);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    position: relative;
    background-color: #FFFFFF;
    height: 450px;
    width: 75%;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
}

.box div {
    padding-top: 10px;
}

.box h2 {
    font-size: 20px;
    font-weight: 100;
    margin: 40px 0;
    color: #565656;
}

.data>input {
    padding: 15px 0 10px 0;
    width: 90%;
    border: none;
    border-bottom: 2px solid #5B86E5;
    font-size: 14px;
    color: #333333;
    background-color: #FFFFFF;
    outline: none;
    margin-bottom: 20px;
}

.box ul {
    list-style: none;
    display: inline-block;
    margin: 20px 0 30px;
}

.box ul li {
    display: inline-block;
    padding: 0 20px;
}

.box ul li label {
    position: relative;
    padding-left: 25px;
    border: #F0F8FF;
    display: inline-block;
    font-size: 15px;
    color: #000;
}

.box ul li a {
    color: #000000;
    text-decoration: none;
}

.checkedbox:first-child {
    width: 17px;
    height: 17px;
    display: inline-block;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 4px;
    background-color: #5B86E5;
}

.check:checked+label span:first-child:before {
    display: block;
    content: "";
    background: url(../img/tick.png) no-repeat;
    position: absolute;
    left: 3px;
    top: 3px;
    font-size: 10px;
    width: 10px;
    height: 10px;
}

.submit input {
    padding: 10px 30px;
    font-size: 15px;
    border: none;
    outline: none;
    border-radius: 30px;
    background-color: #5B86E5;
    color: #FFF;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.submit input:hover {
    background-color: #36D1DC;
}

@media screen and (min-width: 768px) {
    .box {
        width: 65%;
    }
}

@media screen and (min-width: 1290px) {
    .box {
        width: 55%;
    }
}

@media screen and (min-width: 1920px) {
    .box {
        width: 40%;
    }
}