@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
	padding:0;
	margin:0; 
    font-family: 'Montserrat', sans-serif;
}
a {
 color: #747948;
 text-decoration: none;
}
a:hover {
 text-decoration: underline;
 color: #747948;
}
a img {
 border: 0;
}
h1, h1 a {
 color: #260f02;
 
 font-size: 28px;
 font-weight: normal;
 margin: 0;
}
h2, h2 a {
 color: #260f02;
 
 font-size: 26px;
 font-weight: normal;
 margin: 0;
}
h3, h3 a {
 color: #260f02;
 
 font-size: 22px;
 font-weight: normal;
 margin: 0;
}
h4, h4 a {
 color: #767b49;
 
 font-size: 20px;
 font-weight: normal;
 margin: 0;
}
h5, h5 a {
 color: #212121;
 
 font-size: 18px;
 font-weight: normal;
 margin: 0;
}
h6, h6 a {
 color: #707445;
 
 font-size: 16px;
 font-weight: normal;
 margin: 0;
}
p, ul, ol {
 color: #212121;
 
 font-size: 14px;
 font-weight: normal;
 margin: 0;
 line-height: 21px;
}
.login_page{
    margin: 0;
    padding: 0;
    display: flex;
    overflow: hidden;
}
.login_form{
    width: 50%;
    background: url(../images/login_bg.png) no-repeat right bottom;
    background-size: 100%;
}

.login_slider{
    width: 50%;
}
.header{
    padding: 15px 40px 0 40px;
    min-height: 65px;
}
.header img{
    max-width: 100%;
    width: 130px;
}
.login_section{
    width: 460px;
    margin: 0 auto;
}
.login_pro{
    text-align: center;
}
.login_pro img{
    max-width: 100%;
    width: 85px;
}
.login_section h2{
    text-align: center;
    font-size: 20px;
    color: #ff6d87;
    margin: 10px 0 0 0;
    padding: 0;
    font-weight: 500;
}
.form_main{
    margin-top: 20px;
    padding: 0 45px;
}
.form_main .input_field{
    width: 100%;
    height: 40px;
    border: 2px solid #ff6d87;
    border-radius: 0px 35px 35px 0;
    outline: 0;
    margin-bottom: 20px;
    box-shadow: 1px 2px 10px #ccc;
    padding: 0 15px;
    color: #4b4b4b;
    font-size: 16px;
    font-weight: 500;
}

.form_main .input_field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #4b4b4b;
    opacity: 1;
}
.form_main .input_field::-moz-placeholder { /* Firefox 19+ */
  color: #4b4b4b;
    opacity: 1;
}
.form_main .input_field:-ms-input-placeholder { /* IE 10+ */
  color: #4b4b4b;
    opacity: 1;
}
.form_main .input_field:-moz-placeholder { /* Firefox 18- */
  color: #4b4b4b;
    opacity: 1;
}


.form_main input.input_field{
    padding: 0 20px;
}
.form_main .input_field option{
    padding: 0;
}
.form_main .form_group{
    position: relative;
    padding-left: 60px;
}
.form_main .form_group.user:before{
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 60px;
    background: #ff6d87;
    content: "";
    border-radius: 35px 0 0 35px;
}
.form_main .form_group.user:after{
    width: 25px;
    height: 30px;
    background: url(../images/user.png) no-repeat center center;
    position: absolute;
    left: 20px;
    top: 5px;
    content: "";
    background-size: 20px;
}

.form_main .form_group.password:before{
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 60px;
    background: #ff6d87;
    content: "";
    border-radius: 35px 0 0 35px;
}
.form_main .form_group.password:after{
    width: 28px;
    height: 36px;
    background: url(../images/password.png) no-repeat center center;
    position: absolute;
    left: 20px;
    top: 1px;
    content: "";
    background-size: 22px;
}
.form_group span{
    display: block;
    position: relative;
}
.form_group span:before{
    position: absolute;
    right: 2px;
    top: 2px;
    width: 44px;
    height: 35px;
    background: #fff;
    content: "";
    pointer-events: none;
    border-radius: 0 56px 56px 0;
}
.form_group span:after{
    position: absolute;
    right: 14px;
    top: 14px;
    width: 15px;
    height: 12px;
    background: url(../images/dropdown.png) center center;
    content: "";
    pointer-events: none;
}
.remember_forgot{
    display: flex;
    justify-content: space-between;
}
.remember_forgot .remember_me{
    position: relative;
    font-size: 18px;
    color: #4b4b4b;
    display: block;
padding-left: 35px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
    
}


.remember_forgot .remember_me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
z-index: 99;
left: 0;
top: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 2px solid #ff6d87;
    border-radius: 4px;
}





/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.remember_forgot .remember_me input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.remember_forgot .remember_me .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #ff6d87;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.remember_forgot .forgot_pass a{
    font-size: 18px;
    color: #4b4b4b;
    text-decoration: none;
}
.sign_btn{
    text-align: center;
    margin-top: 20px;
}
.sign_btn button{
    width: 158px;
    height: 44px;
    border-radius: 35px;
    background: #ff6d87;
    border:none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}
.form_main p{
    text-align: center;
    font-size: 16px;
    color: #4b4b4b;
    margin-top: 25px;
    background-color: #ff6d87;
    padding: 10px 0;
    border-radius: 0px 0px 37px 37px;
}
.form_main p a{
    font-weight: 600;
    color: #fefefe;
    text-decoration: none;
    
}
.carousel-indicators{
    right: 15px;
    top: 50%;
    bottom: auto;
    left: auto;
    transform: translate(-50%, 0);
    width: auto;
}
.carousel-indicators li{
    width: 12px;
    height: 12px;
    display: block;
    margin: 0 0 5px!important;
    background: #cbcbcb;
}
.carousel-indicators .active{
    background: #ff6d87;
}
.modal_close {
    position: absolute;
    right: -8px;
    top: -7px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    background: #b84d45!important;
    line-height: 25px;
    text-align: center;
    opacity: 1;
    outline: none;
    z-index: 999;
}
.main_modal h2 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 600;
}
.cus_alert{
   padding: 7px 3px;
   background-color: #ff6d8759;
}
.cus_alert .close{
    right: 2px;
}
.copyri{
	
    margin: 30px 0 0;
}



