/*---------------------------------------------------------
login-design
-----------------------------------------------------------*/
body {
    background-color: #BF8E97 !important;
}
.wpo-login-area {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0;
}
.wpo-accountWrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    margin: auto;
    box-shadow: 0px 0px 60px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
}
.wpo-accountInfo {
    width: 50%;
    background: #BF8E97;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    text-align: center;
    padding: 50px;
    position: relative;
}

.wpo-accountForm {
    width: 50%;
    padding: 70px 85px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.wpo-accountInfoHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    z-index: 1;
}

.wpo-accountInfo .wpo-accountBtn:hover {
    background: transparent;
    color: #fff;
}
.wpo-accountInfo p {
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}

.namecontainer {
    position: absolute;
    width: calc(50% - 11.25px);
    left: 50%;
    top: -80px;
    height: 80px;
}

.namecontainer h1.white {
    color: #FFF !important;
    left: 0;
    text-align: center;
    font-size: 3.3rem;
    width: 100%;
    padding: 0;
    margin: 0;
}

.fromTitle h2 {
    font-size: 40px;
    margin-bottom: 10px;
    text-align: center;
}
.fromTitle p {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.langselect {
    position: absolute;
    right: 25px;
    top: 5px;
    z-index: 999;
}

.wpo-login-area .langselect a {
    text-decoration: none;
    color: #AAA;
}

.wpo-login-area .langselect a.selected {
    text-decoration: none;
    color: #BF8E97;
}

.wpo-login-area .langselect a:hover {
    text-decoration: none;
    color: #e4677f;
}

.form-style input {
    width: 100%;
    margin-bottom: 15px;
    padding-left: 20px;
    height: 60px;
    border: 1px solid #e5e5e5 !important;
    border-radius: 2px;
    border: none;
}
.form-style input:focus{
    outline: none;
    border: 1px solid #e5e5e5 !important;
}

input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + label:before {
    content: "\2714";
    border: 1px solid #e5e5e5;
    border-radius: 0.2em;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
    line-height: 1.2em;
    position: absolute;
    left: 14px;
}

input[type=checkbox] + label:active:before {
  transform: scale(0);
}

.error {
    color: red;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.check-box-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forget-btn a{
    display: inline-block;
    font-size: 14px;
    color: #BF8E97;
}
.input-box label {
    color: #676B79;
    font-weight: 500;
    font-size: 16px;
    padding-left: 20px!important;
}
.wpo-accountForm .wpo-accountBtn{
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid #BF8E97;
    width: 100%;
    background: #BF8E97;
    color:#fff;
   transition: all .4s ease-in-out 0s; 
   margin-top: 30px;
}
.wpo-accountForm .wpo-accountBtn:hover{
    background: transparent;
    color: #333;
}

.subText {
    text-align: center;
}
.subText a {
    display: inline-block;
    font-size: 18px;
    color: #BF8E97;
}

.form-group{
    position: relative;
}
.input-group-btn {
    position: absolute;
    right: 15px;
    top: 37px;
}
.input-group-btn button{
    background: transparent!important;
    border: none;
    outline: none;
    background: none;
    box-shadow: none!important;
}
.input-group-btn button:hover{
    background: transparent;
}
.input-group-btn button:focus,
.input-group-btn button.active{
    background: none!important;
    border: none!important;
    outline: none!important;
}
.btn-default.active, 
.btn-default.active, 
.open>.dropdown-toggle.btn-default{
    background: none!important;
    border: none;
    outline: none;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    z-index: 0;
    overflow: hidden;
}

.image img {
    object-fit: fill;
}

@media(max-width: 1200px){
    .wpo-accountWrapper {
        width: 900px;
    }
     .wpo-accountForm {
    padding: 70px 35px;
    }
}
@media(max-width: 1024px){
    .wpo-accountWrapper {
    width: 100%;
    max-width: 100%;
    }
    .wpo-accountForm {
    padding: 70px 35px;
    }
    .image img{
        width: 100%;
    }
}

@media(max-width: 992px){
    .wpo-accountInfo{
        width: 100%;
        padding: 30px;
        display: none;
    }
    .namecontainer {
        left: 0;
        width: 100%;
    }
    .wpo-accountForm{
        width: 100%;
    }
    .accountArea {
    padding: 0px 16px;
    }
    .imgcredit {
        display: none;
    }
}

@media(max-width: 767px){
    .wpo-accountInfo{
        width: 100%;
    }
    .wpo-accountForm{
        width: 100%;
    }

    .fromTitle h2 {
        font-size: 30px;
    }
}
.back-home{
    max-width: 175px;
}

.imgcredit {
    font-size: 10px;
    color: #856369;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.imgcredit a {
    color: #856369;
    text-decoration: none;
}