/*@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

*/

@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');


* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  font-family: "Itim", serif;
}

::-webkit-scrollbar {
  width: 5px;

}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: "poppins", sans-serif;

}
/* form styling starts here */
.forms {
  background-image: url(../images/mockup-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}

.form_cont {
  width: 100%;
  height: 130vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form_sub_cont {
  width: 40%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  border-radius: 5px;
  background: #fff;
  padding: 40px 20px;
}

.header_log_flex {
  display: flex;
  justify-content: space-between;
}

.header_log_flex h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #d65db1;
}

.header_log_flex .status_bar {
  width: 30%;
  background: #f9f871;
  height: 3px;
  align-items: center;
  margin: 15px 0px 0px 0px;
  border-radius: 3px;
}

.form_sub_content P {
  font-size: 15px;
  color: #858f9a;
  font-weight: 400;
  margin: 10px 0px;
}

.form_sub_content .form_input_flex {
  display: flex;
  justify-content: flex-start;
  margin: 10px 0 15px;
  border: 1px solid #ffa500;
  padding: 15px 10px;
  border-radius: 5px;
  width: 100%;
}

/*For normal select*/
.form_sub_content .form_input_flex.select select {
  width: 92%;
}

.form_sub_content .form_input_flex.mobile .code {
  width: 13%;
  height: 100%;
  border-right: 1px solid #ff6f91;
}

.form_sub_content .form_input_flex.mobile .code select {
  background-color: #fff;
  padding: 5px;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

.form_sub_content .form_input_flex.mobile input {
  width: 79%;
  font-size: 17px;
}

.form_sub_content .form_input_flex.mobile .icon_end {
  width: 8%;
  color: #858f9a;
}

.form_sub_content .form_input_flex input {
  width: 92%;
  font-size: 17px;
}

.form_sub_content .form_input_flex input::placeholder {
  font-size: 17px;
}

.form_sub_content .form_input_flex .icon_end {
  width: 8%;
  color: #858f9a;
}

.form_sub_content .form_input_flex .icon_end .tt {
  font-size: 25px;
  font-weight: 50;
}

.remember_me {
  margin: 15px 0px 35px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
}

.remember_me p {
  margin-left: 5px;
  color: #858f9a;
}

.form_cont button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  background: #ff6f91;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 0 25px 0;
}

.form_cont button:hover {
  background: #fff;
  color: #ff6f91;
  border: 1px solid #ff6f91;
  transition: 0.5s ease;
}

.end_links_flex {
  display: flex;
  justify-content: flex-start;
}

.end_links_flex a {
  color: lightskyblue;
  margin: 0 5px 0;
}

@media(max-width: 768px) {

  ::-webkit-scrollbar {
    width: 5px;
  
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  
  html,
  body {
    overflow-x: hidden;
  }

  .main_cont .cont_head {
    height: 8%;
  }

  .con_foo .icon .img {
    width: 20px;
    height: 20px;
    margin-left: 40px;
  }

  .forms {
    background-image: url(../images/mockup-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100%;
  }

  .form_cont {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .form_sub_cont {
    width: 95%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    border-radius: 5px;
    background: #fff;
    padding: 40px 20px;
  }

  .form_sub_content .form_input_flex.mobile .code {
    width: 13%;
    height: 100%;
  }

  .form_sub_content .form_input_flex.mobile .code select {
    background-color: #fff;
    padding: 10px;
  }

  .form_sub_content .form_input_flex.mobile input {
    width: 77%;
    font-size: 17px;
  }

  .form_sub_content .form_input_flex.mobile .icon_end {
    width: 10%;
  }

  .form_sub_content .form_input_flex input {
    width: 88%;
    font-size: 17px;
  }

  .form_sub_content .form_input_flex .icon_end {
    width: 12%;
  }

  /*For normal select*/
  .form_sub_content .form_input_flex.select select {
    width: 88%;
  }

}

.end_links_flex a {
  color: lightskyblue;
  margin: 0 3px 0;
  font-size: 11px;
}