@font-face {
    font-family: 'Avenir-Medium';
    src: url('../fonts/avenir-medium.eot'); /* IE9 Compat Modes */
    src: url('../fonts/avenir-medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/avenir-medium.woff') format('woff'), /* Modern Browsers */
    url('../fonts/avenir-medium.woff2') format('woff2'), /* Modern Browsers */
    url('../fonts/avenir-medium.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/avenir-medium.svg#Avenir-Medium') format('svg'); /* Legacy iOS */
    font-style: normal;
    text-rendering: optimizeLegibility;
}

@font-face {
    font-family: 'Avenir-Book';
    src: url('../fonts/avenir-ltstd-book.eot'); /* IE9 Compat Modes */
    src: url('../fonts/avenir-ltstd-book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../fonts/avenir-ltstd-book.woff') format('woff'), /* Modern Browsers */
    url('../fonts/avenir-ltstd-book.woff2') format('woff2'), /* Modern Browsers */
    url('../fonts/avenir-ltstd-book.ttf') format('truetype'), /* Safari, Android, iOS */
    url('../fonts/avenir-ltstd-book.svg#AvenirLTStd-Book') format('svg'); /* Legacy iOS */
    font-style: normal;
    text-rendering: optimizeLegibility;
}

body {
    color: #fff;
    height: 100%;
    background: url(../images/background.jpeg) left top no-repeat;
    background-size: cover;
    font-family: "Avenir-Medium", sans-serif !important;
    position: relative;
}

.body__overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
}

.page_header{
    position: relative;
    margin-bottom: 30px;
}

.page_logo{
    width:320px;
    display: inline-block;
}

.page_logo img{
    max-width: 100%;
}

input:focus,
textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0;
    font-weight: 400;
}

button:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline-width: 0
}

.log_main_page{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 10;
    position: relative;
}


.log_main_container{
    position: relative;
    max-width: 450px;
    width: 100%;
    border: none;
    min-height: 400px;
    border-radius: 20px;
    background-color: #1e201f;
    overflow: hidden;
    box-shadow: 5px 5px 10px #141414;
}

.card.signlog_card {
    border: none;
    background: #1e201f;
    height: 100%;
    border-radius: 0px;
}

.card1 {
    width: 100%;
    padding: 40px 60px;
}

.log-heading {
    margin-bottom: 30px;
    color:#fff;
    text-transform: capitalize;
    font-size: 34px;
    line-height:38px;
    font-weight: bold;
}

::placeholder {
    color: #bfc1c0 !important;
    opacity: 1
}

:-ms-input-placeholder {
    color: #bfc1c0 !important
}

::-ms-input-placeholder {
    color: #bfc1c0 !important
}

.card.signlog_card .form-group{
    margin-bottom:20px ;
}

.form-control.log_input{
    border-radius: 0px;
    border:0px none;
    border-bottom:1px solid #bfc1c0;
    margin-bottom: 3px;
    font-size: 14px;
    height: 30px;
    background: transparent;
    padding: 8px 0px;
    color: #bfc1c0 !important;
}

.signlog_card .form-check-label{
    font-size: 11px;
    color: #bfc1c0;
}

.site-btn {
    border-radius: 6px;
    color: #202020;
    background: #ffffff;
    padding: 8px 15px;
    cursor: pointer;
    border: none !important;
    font-size:14px;
    display: inline-block;
    min-width: 130px;
    line-height: 16px;
    font-weight: bold;
    text-transform: capitalize;
    min-height: 30px;
}

.site-btn:hover {
    color: #fff;
    background: #000;
}

.password-forgot-link{
    font-size: 12px;
    color: #bfc1c0;
}

.password-forgot-link:hover{
    text-decoration: none;
    color: #fff;
}

.card_mid_head{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card.forgot_card .card_mid_head{
    font-size: 46px;
}

.check-box-cont {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 11px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #bfc1c0;
}

/* Hide the browser's default checkbox */
.check-box-cont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0.5px;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: #1e201f;
    border:1px solid #bfc1c0;
}


/* When the checkbox is checked, add a blue background */
.check-box-cont input:checked ~ .checkmark {
    background-color: #1e201f;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-box-cont input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-box-cont .checkmark:after {
    left: 3px;
    top: 0px;
    width: 4px;
    height: 8px;
    border: solid #bfc1c0;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


@media screen and (max-width: 767px) {

    .log_main_container{
        padding: 0px 40px;
        position: relative;
    }

    .page_header{
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 480px) {
    .log_main_page{
        padding: 0px 20px;
    }
    .page_logo{
        width:250px;
    }
    .card1 {
        padding: 0px;
    }


}
