body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #004066;
}
a {
    cursor: pointer;
}
img, video {
    width: 100%;
}
p {
    margin: 0;
}
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}
.noscroll { overflow: hidden; }
.page {
    width: 100%;
    height: 100vh;
}
.page.page-landing {
    background: url("../images/landing.jpg") no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
}
#video-landing, #way_to_login {
    display: none;
}
.btn-login {
    /*display: block;*/
    /*position: absolute;*/
    /*bottom: 3%;*/
    /*right: 40%;*/
    /*padding: 0;*/
    /* width: 15%; */
    background: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 20px;
}
.btn-login-here {
    display: block;
    position: absolute;
    bottom: 3%;
    right: 4%;
    color: #fff;
}
.btn-login-here>a {
    text-decoration: none;
    color: #fff;
    border: 1px solid;
    padding: 3px 5px;
    font-weight: 700;
}

@media only screen and (min-width: 320px) and (max-width: 900px) {
    .page.page-login .login-form .btn-login {
        padding: 1px 12px;
        font-size: 7px;
    }
    .page.page-login .login-form .btn-register {
        padding: 2px 5px;
        font-size: 6px;
    }
    .page.page-landing .btn-login {
        font-size: 9px;
        padding: 5px 20px;
        /*right: 6%;*/
    }
}
.flip_meesage {
    display: none;
}
@media only screen and (max-width: 550px) {
    .page {
        display: none;
    }
    .flip_meesage {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        background: #fff;
        z-index: 5;
        display: block;
    }
    .flip_meesage:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url("../images/rotate_device.png") center center no-repeat;
        background-size: 70%;
    }
}