.fpw{
  background-color: var(--color0);
  background-image: url('../Images/register/bg.jpg');
  background-size: cover;
  background-position: center;
  padding-top:40px;
  padding-bottom:30px;
}

.fpw_content{
  height:250px;
  background: rgb(30,30,30);
  display:flex;
  overflow: hidden;
  border-radius: 5px;
}



.fpw_banner{
  width:25%;
  overflow: hidden;
  position:relative;
}

.fpw_logo{
  width:200px;
  position:absolute;
  left:50%;
  -moz-transform:translate3d(-50%,-50%,0);
  -webkit-transform:translate3d(-50%,-50%,0);
  transform:translate3d(-50%,-50%,0);
  top:50%;
  z-index: 1;
}

.banner_bg{
  position:absolute;
  height:100%;
  left:-150px;
  -webkit-filter:blur(2px);
  filter:blur(2px);
}

.fpw_body{
  height:100%;
  width:75%;
  background: var(--color0);
  padding:30px 0;
  padding-left: 50px;
  box-sizing: border-box;
  transition: 0.5s;
  z-index: 1;
}


.fpw_body:hover .fpw_header:after{
  width:80%;
}


.fpw_header{
  position:relative;
}

.fpw_header:after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  height:2px;
  width:35%;
  transition: 0.5s;
  background: linear-gradient(to right,var(--gold1),var(--gold2),var(--gold3));
}

.fpw_header>span{
  font-family: 'Lobster', cursive;
  font-size: 35px;
  text-align: center;
  background: linear-gradient(to right,var(--gold1),var(--gold2),var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.fpw_details{
  display:flex;
  margin: 40px 0 25px 0;
}

.details_left{
  margin-right: 35px;
}

.details_left,.details_right{
  display:flex;
  flex-direction: column;
}

.fpw_input{
  font-size: 12px;
  margin-bottom: 15px;
}

.fpw_label{
  font-weight: bold;
  color:white;
}

.required_icon{
  color:var(--color3);
  font-size: 15px;
  margin-left: 3px;
}

.password_input{
  position:relative;
}

.view, .noview{
  width:18px;
  cursor: pointer;
  position:absolute;
  right:5px;
  top:50%;
  transform:translateY(-50%);
  filter:drop-shadow(1px 1px 0px black);
}

.code_input{
  display:flex;
  align-items: center;
  justify-content: space-between;
}

.code_input input{
  width:50% !important;
}

.code_input .captcha{
  height:30px;
}


.fpw input, .fpw select{
  width: 240px;
}



.fpw select option{
  padding:4px 5px;
}


.submission_btns{
  align-self: flex-end;
  display:flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: 15px;
}

.submission_btns button{
  margin-left: 10px;
  font-size: 15px;
  border: none;
  padding:5px 10px;
  border-radius: 3px;
  font-weight: bold;
  cursor:pointer;
  width:100px;
}

.submit_btn{
  background: linear-gradient(145deg,var(--gold1),var(--gold2),var(--gold3));
  color:black;
}

.reset_btn{
  background: var(--red_gradient);
  color:white;
}

.submission_btns button:hover{
  -webkit-filter:brightness(120%);
  filter:brightness(120%);
}
