body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;

}

/* signup start */
.outer-div{
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
 align-items: center;
}
@media(max-width:1300px){
  .outer-div{
      display: flex;
      flex-direction: column;
      justify-content: center !important;
      align-items: center;
      height: 100%;
      width: 100%;
  } 
  .inner-img img{
    height: 350px;
    width: auto;
  }
}
/* form start */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.form-container form {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  width: 500px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.form-container input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
}
.form-container input:focus{
  background-color: #fff;
}
/* lable floating */
.input-outer {
  position: relative;
}
.input-label {
  position: absolute;
  top: 22px; 
  left: 10px;
  color: #111;
  font-weight: 500;
  background-color: #fff;
  pointer-events: none; 
  transition: 0.2s ease-out; 
}
 #role{
 width: 100%;
  padding: 12px;
  margin: 10px 0;
  box-sizing: border-box;
  font-weight: bold;
  letter-spacing: 2px;
 }
 #role option{
  font-weight: bold;
  letter-spacing: 2px;
 }


.form-container button {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
}

.form-container button:hover {
  background-color: #555;
}

.switch-form {
  text-align: center;
  margin-top: 25px;
}

.switch-form a {
  color: #333;
  text-decoration: none;
}
.error {
  color: red !important;
  padding: 0%;
  margin: 0;
}


@media (max-width: 540px) {
  .form-container form {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 400px;
    margin-bottom: 20px;
  }
  #phoneNumber {
    width: 17em;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
  }
  .inner-img img{
    height: 300px;
    width: auto;
  }

}
@media (max-width: 450px) {
  .form-container form {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: 300px;
    margin-bottom: 20px;
  }
  #phoneNumber {
    width: 10.6em;
    padding: 5px;
    margin: 10px 0;
    box-sizing: border-box;
  }
  .form-container input {
    width: 100%;
    padding: 5px;
    margin: 10px 0;
    box-sizing: border-box;
  }
  select{
    height: 2.5em;
    width: fit-content;
    box-sizing: border-box;
   }
   #age{
    width: 7em;
   }
   #role{
    width: 100%;
     padding: 4px;
     margin: 10px 0;
     box-sizing: border-box;
    }
    #already{
      font-size: 0.9rem;
    }
    .input-label {
      position: absolute;
      top: 16px ; 
      left: 10px;
      color: #111;
      font-weight: 500;
      background-color: #fff;
      pointer-events: none; 
      transition: 0.2s ease-out; 
    }
    .inner-img img{
      height: 230px;
      width: auto;
    }
}