﻿html,body {
    width:100%;
    height:100%;
    padding:0;
    margin:0;
}
*{box-sizing: border-box; -webkit-tap-highlight-color: transparent;}

body{
    background:#f3f3f9;
    font-family:'BPG DejaVu Sans', 'Roboto', sans-serif;
}

.landing-page{
    width:100%;
    padding:76px 0 100px;
    background: #f3f3f9 url(../Images/landing/bg.jpg) center 0 no-repeat;
    position:relative;
    overflow:hidden;    
    min-height:100%;
}

.landing-page .logo{
    display:block;
    height: 163px;
    margin:0 auto 49px;
    position:relative;
    z-index:2;
}

.landing-page h1 {
    color: #8b919e;
    font-family: 'BPG DejaVu Sans MT', 'Roboto', sans-serif;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 3;
}

.landing-page .btn-wrap{
    display:flex;
    justify-content:center;
    position:relative;
    z-index:2;
}
.landing-page .btn-wrap a{
    display:block;
    width:322px;
    border-radius:14px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.3);
    padding:20px 10px 27px;
    margin:0 21px;

    color:#fff;
    font-family: 'BPG DejaVu Sans MT', Arial, sans-serif;
    font-size:16px;
    text-align:center;
    text-decoration:none;
}
.landing-page .btn-wrap .admin-btn{
    background-color:#17a1b7;
}
.landing-page .btn-wrap .user-btn{
    background-color:#8574dc;
}

.landing-page .btn-wrap a img{
    display:block;
    width: 94px;
    margin:0 auto 15px;
}
.landing-page .btn-wrap a span{
    display:block;
}
.landing-page .bottom-bar{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    border-top:1px solid #e4eaec;
    background-color:#edeff5;
    height:50px;

}
.landing-page .bottom-bar .sixtythreebits {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.landing-page .bottom-bar .sixtythreebits a {
    margin-left: 8px;
}
.landing-page .bottom-bar .sixtythreebits span {
    font-size:12px !important;
    color:#656565;    
}

.landing-page .bottom-bar .sixtythreebits img {
    display: block;
    height: 14px;
    border:0;
    outline:none;
}

@media (max-width:767px){
    .landing-page{
        padding:40px 20px;
    }
    .landing-page::before{
        height:160px;
    }
    .landing-page .logo{
        height: 80px;
        margin-bottom:40px;
    }
    .landing-page .btn-wrap{
        display:block;
    }
    .landing-page .btn-wrap a{
        width:100%;
        max-width:300px;
        padding-bottom:20px;
        margin:0 auto 20px;
    }
    .landing-page .btn-wrap a img{
        height:60px;
    }
    .landing-page h1{
        font-size: 32px;
    }
}