﻿.attr-nav>a {
    color: #fff;
}

.attr-nav a img {
    width: 25px;
    margin-right: 5px;
}

.navbar-collapse {
    border-top: solid 1px #CCEAE3;
}

/*banner*/

main.banner {
    height: calc(100vh - 150px);
    background-image: url(../images/banner_s.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*login*/

.container-login {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.wrap-login {
    width: 390px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 60px 55px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
    text-align: center!important;
    background: linear-gradient(to bottom, #dadada, #fbfbfb);
    opacity: .90;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
}

.login-form-title {
    font-size: 2rem;
    font-weight: bold;
}

.wrap-login .wrap-input {
    text-align: left!important;
}

.wrap-input {
    margin: 15px 0;
}

.input100 {
    width: 100%;
    height: 2.5rem;
    border-radius: 0.3rem;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
}


.wrap-login100-form-btn button {
    width: 100%;
}

.registered {
    margin-top: 50px;
}

.pc {
    display: none;
}

.mobile {
    display: block;
    position: absolute;
    right: 80px;
    top: 23px;
}

.eye-input {
    position: relative;
    top: 0;
    left: 0;
}

.btn-show-pass {
    position: absolute;
    right: 1rem;
    top: 2.5rem;
    cursor: pointer;
}

.login-form label.error {
    color: red;
    font-weight: bold;
}

/*page*/

.container-page {
    padding: 50px 10%;
}

.validate-form label.error {
    color: red;
    font-weight: bold;
}

@media only screen and (min-width: 481px) {
    /*login*/
    .container-login {
        padding-top: 150px;
        padding-bottom: 200px;
    }
}

@media only screen and (min-width: 1024px) {
    .pc {
        display: block;
    }
    .mobile {
        display: none;
    }
    .navbar-collapse {
        border-top: none;
    }
    /*banner*/
    main.banner {
        height: calc(100vh - 50px);
        background-image: url(../images/banner.jpg);
        background-position: left;
    }
}