.container-form {
  position: relative;
  max-width: 1017px;
  width: 100%;
  background: #fff;
  padding: 25px;
  /* border-radius: 8px; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
} 
.container-form .form-content {
    background: #f7f7f7;
    background-clip: padding-box;
    border: solid 1px transparent;
    border-radius: 10px;
    padding: 20px 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 1px 3px rgb(0 0 0 / 5%), 0 1px 2px rgb(0 0 0 / 10%);
  }
  .container-form .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: 50px;
    flex-wrap: wrap;
  }
  .form .gender {
    column-gap: 5px;
  }
  .gender input {
    accent-color: #d90a0a;
  }
  .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: 60%;
    color: #fff;
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #d90a0a;
    margin-left: 20%;
    border-radius: 15px;
  }
  .subm
  {
	  height: 55px;
    width: 60%;
    color: #fff;
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #d90a0a;
    margin-left: 20%;
    border-radius: 15px;
  }
  .form button:hover {
    background: #6c0505;
    box-shadow: 0 1px 10px 2px rgb(0 0 0 / 15%), 0 1px 8px 1px rgb(0 0 0 / 20%);
  }
  .bam{
    border: 1px solid #d90a0a;
    max-width: 48%;
    padding: 2rem;
    border-radius: 0.8rem;
  }
  .labelThree{
    margin-right: 0px !important;
  }
  .fa-circle-dot{
    font-size: 0.9rem;
    margin-right: 0.8rem;
    color: #d90a0a;
  }
  .form-p{
    margin-left: 2rem;
  }
  .sign-up-form{
    border-radius: 0.3rem;
    background-color: #d90a0a;
    color: #fff;
    padding: 0.2rem 0.8rem;
    /* box-shadow: 0px 0px 5px 1px #00000082; */
  }
  .sign-up-form:hover{
    background-color: #000000 !important;
    color: #fff !important;
  }
  .form-head-am-lm{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .form-back{
    float: right;
    border: none;
    background-color: #d90a0a;
    color: #fff;
    border-radius: 1rem 0 0 1rem;
    padding: 0.1rem 0.8rem;
    outline: none;
    box-shadow: none;
  }
  .form-back:hover{
    background-color: #000000;
    color: #ffffff !important;
  }
  /*Responsive*/
  @media screen and (max-width: 500px) {
    .form .column {
      flex-wrap: wrap;
    }
    .form :where(.gender-option, .gender) {
      row-gap: 15px;
    }
  }
  