﻿@charset "utf-8";
/* CSS Document */
html, body {
    height: 100%;
}

.login-page, .register-page {
    background: #fff;
}

.loginbg {
    background: url(..//images/bg1.jpg) no-repeat center center;
    background-size: auto;
    height: 100%;
    min-height: 822px;
    width: 100%;
    background-size: cover;
    margin: auto;
    position: relative;
}

.login-box {
    width: 500px;
    margin: 220px auto;
    overflow: hidden;
}

.login {
    padding-top: 20px;
    text-align: center;
}

.form-one {
    width: 100%;
    margin: auto;
    padding: 120px 40px 140px 40px;
}

.btn-login {
    color: #fff;
    height: 80px;
    line-height: 80px;
    width: 100%;
    font-size: 20px;
    background: #ffffff9e;
    border-radius: 50px;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-out;
    box-shadow: 0px 35px 77px -17px rgba(0, 0, 0,0);
    letter-spacing: 3px;
    font-weight: bold;
}

    .btn-login:hover, .btn-login.focus, .btn-login:focus {
        box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.64);
        transform: scale(1.08);
        position: relative;
        z-index: 9;
        color: #fff;
    }


@media screen and (max-width: 500px) {
    html, body {
        height:auto;
    }

    .loginbg {
        height: 100%;
        min-height: 680px;
    }

    .login-box {
        width: 97%;
        margin: 180px auto 0;
    }
}
