/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
 
  
}
.container1 {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border-color:black;
  box-shadow: 0 0 15px rgba(5, 0, 14, 0.1);
}
.container1 header {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.container1 .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #333;
}
.form :where(.input-box input, .select-box) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: rgb(130, 106, 251);
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #707070;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgb(130, 106, 251);
}
.form button:hover {
  background: rgb(88, 56, 250);
}
/*Responsive*/
@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}
.register_msg_disable_background {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: visible;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.6);
  z-index: 99999;
  display: none;
  transition: all 0.2s ease-in-out;
  /*border: 2px solid #fff;*/
}
.register_msg_bx {
  /*position: fixed;*/
  padding: 0;
  top: 35%;
  left: 31%;
  /*display: none;*/
  /*height: 175px;*/
  z-index: 1000;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ededed;
  box-shadow: 0 2px 26px rgba(0, 0, 0, .3), 0 0 0 1px rgba(0, 0, 0, .1);
}

.i_staus_msgbx_top {
  padding: 15px 0 10px 15px;
  color: #ddd;
  background-color: #e9ebee;
}

.i_staus_msgbx_top h5 {
  font-size: 16px;
  color: #666;
}

.i_staus_msgbx_cont {
  font-size: 15px;
  padding: 30px 0 30px 15px;
}

.add_expns_btn_sec {
  padding: 15px 1px 43px 15px;
  color: #1d2129;
  background-color: #f5f6f7;
}
@media (max-width: 575px){
  .col-xs-6 {
      /*flex: 0 0 15%;*/
      /*max-width: 15%;*/
      width: 40%;
  }

  .col-xs-9 {

     width: 75%; 
  }

  .col-xs-1 {
     display: inline-block;
     width: 10%;
  }

}
.register_cancel_btn {
  float: right;
  margin: 0px 15px 0 8px;
  padding: 3px 54px 2px 10px;
  width: 77px;
  text-align: center;
  cursor: pointer;
  color: #4b4f56;
  background-color: #f5f6f7;
  border: 1px solid #ccd0d5;
  border-radius: 12px;
}

.register_ok_btn {
  float: right;
  margin: 0px 15px 0 8px;
  padding: 3px 54px 2px 10px;
  width: 77px;
  text-align: center;
  cursor: pointer;
  color: #4b4f56;
 
  background-color: #489ae3;
    border: 1px solid #489ae3;
    border-radius: 12px;
}
