.focus-modal{
    background-color: #fff;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0;
        pointer-events: none;
        padding-top: 14px;
        background: #fff;
        outline: 0;
        overflow: auto;
        pointer-events:none
    }
    
    
    
    .focus-modal .modal-close-container {
        width: 100%;
        display: inline-block;
        text-align: right;
        padding: 0 13px 10px 0;
    }
    .focus-modal .modal-content-wrap {
        max-height: none;
        max-width: none;
        padding: 0;
    }
    .login-modal-content {
        padding: 0 24px 24px;
        margin: auto;
        max-width: 1280px;
    
    }
    .login-modal-content .main-form-container {
        display: block;
    }
    .login-modal-content .main-form-container .login-form {
        width: 100%;
        float: none;
        margin: 0;
        max-width: none;
        margin-bottom: 40px;
    }
    .login-modal-content .main-form-container .divider {
        display: none;
    }
    .login-modal-content .main-form-container .register-form {
        width: 100%;
        float: none;
        margin: 0;
        max-width: none;
    }
    .login-modal-content .h3{
        margin-bottom:30px
    }
    @media screen and (min-width: 750px){
    .focus-modal .modal-content-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 0;
    }
    
    .login-modal-content {
        padding: 0 130px;
    }
    .login-modal-content .h3{
        margin-bottom:50px
    }
    }
    @media screen and (min-width: 940px){
    .focus-modal {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
    }
    .focus-modal .modal-close-container {
        position: absolute;
        top: 44px;
        right: 44px;
    }
    .focus-modal  .modal-content-wrap {
        height: auto;
        width: 100%;
        display: block;
        -webkit-box-align: normal;
        -ms-flex-align: normal;
        align-items: normal;
        margin-top: 0;
    }
    
    .login-modal-content {
        padding: 0 20px;
    }
    .login-modal-content .main-form-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }
    .login-modal-content .main-form-container .login-form {
    width: 50%;
        float: left;
        margin: 2rem;
        max-width: 520px;
        margin-bottom: 0;
    }
    
    .login-modal-content .main-form-container .divider {
        display: block;
        height: auto;
        width: 0;
        border: 0.5px #e7e7e9 solid;
    }
    .login-modal-content .main-form-container .register-form {
        width: 50%;
        float: right;
        margin: 2rem;
        max-width: 520px;
    }
    }
    @media screen and (min-width: 960px){
      .login-modal-content .main-form-container .register-form, .login-modal-content .main-form-container .login-form {
        margin: 4rem 3.5rem;
    }  
    }
    @media screen and (min-width: 1070px){
    .login-modal-content .main-form-container .login-form {
        margin-right: 7.25rem;
    }
    .login-modal-content .main-form-container .register-form {
        margin-left: 7.25rem;
    }
    
    }
    body.open-modal {
        overflow: hidden;
    }
    .focus-modal.focus-modal-open {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        z-index: 1001;
        animation: open-modal .6s;
        pointer-events: auto;
    }
    .focus-modal.focus-modal-closed {
        -webkit-transform: scale(1);
        transform: scale(1.2);
        z-index: -1;
        opacity: 0;
        animation: close-modal 0.6s;
        pointer-events: none;
    }
    .focus-modal.focus-modal-open {
        opacity: 1;
        z-index: 1005;
        pointer-events: auto;
    }
    .outline-btn{
        padding: 0;
        background-color: #fff;
        color: #272626;
        border: 1px solid #272626;
        text-align: center;
    }
    .outline-btn:hover, .outline-btn:focus {
        padding: 0;
        background-color: #fff;
        color: #272626;
        border: 1px solid #272626;
        text-align: center;
    }
    @keyframes open-modal {
        0% {
            z-index: -1;
            transform: scale(1.2);
            opacity: 0;
            visibility: hidden;
        }
        1% {
            z-index: 1001;
            visibility: visible;
        }
        100% {
            z-index: 1001;
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }
    }
    @keyframes close-modal {
        0% {
            z-index: 1001;
            transform: scale(1);
            opacity: 1;
            visibility: visible;
        }
        99% {
            z-index: 1001;
            visibility: visible;
        }
        100% {
            z-index: -1;
            transform: scale(1.2);
            opacity: 0;
            visibility: hidden;
        }
    }
    .input-set {
    height: 61px;
    background: #fff;
    position: relative;
    padding: 0!important
}
.input-set label {
    position: absolute;
    left: 16px;
    top: 21px;
    color: #7b766c;
    margin: 0;
    display: inline;
    font-size: 16px;
    font-weight: 400;
    transition: .2s ease all;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    pointer-events: none;
    padding-left: 0
}
.input-set label.top-set {
    top: 6px;
    font-size: 13px;
    color: #3f3d3a
}
.input-set>input[type=text], .input-set>input[type=password] {
    width: 100%;
    height: 100%;
    font-size: 16px;
    padding: 20px 10px 0 16px;
    color: #3f3d3a;
}
.input-set input[type=text]:focus, .input-set input[type=password]:focus {
    background: #f7f6f6
}
/* login box */
.login-wrapper__inner {
    border-radius: 0;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
}
.login-modal-content .h3 {
	font-size: 18px;
	margin-bottom: 20px
}
@media (min-width: 769px) {
	.login-modal-content .h3 {
		margin-bottom: 30px;
		font-size: 23px;
	}
}

.login-wrapper {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	border-radius: 0 0 4px 4px;
	z-index: 1050;

}


#loginBox .panel {
	margin-bottom: 0
}

#loginBox .alert-dismissible .close {
    position:relative;
	opacity: 0.5;
    font-size:41px
}

.float-labels input:focus::-webkit-input-placeholder {
    color: transparent;
}
.float-labels input:focus:-moz-placeholder {
    color: transparent;
}
.float-labels input:focus::-moz-placeholder {
    color: transparent;
}
.float-labels input:focus:-ms-input-placeholder {
    color: transparent;
}