@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{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFBCE;
  padding: 30px;
}

.container{
  max-width: 1050px;
  width: 100%;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.container .title{
  font-size: 25px;
  font-weight: 500;
  position: relative;
  color: #006400;
}

.container .title::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background: #006400;
}

.container form .user-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:20px 0 12px 0;
}

form .user-details .input-box{
  margin-bottom: 15px;
  width: calc(100% / 3 - 20px);
}

.user-details .input-box .details{
  font-weight: 500;
  margin-bottom: 5px;
}

.user-details .input-box input{
  height: 45px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 2px solid #343434;
  padding: 0 15px 0 15px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3 ease;
}

.user-details .input-box input:focus,
.user-details .input-box input:valid{
  border-color: #006400;
}

.user-details .input-box select{
  height: 45px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 2px solid #343434;
  padding: 0 15px 0 15px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3 ease;
}

.user-details .input-box select:focus,
.user-details .input-box select:valid{
  border-color: #006400;
}

option .option:hover{
  background: #95E580;
}

.hide{
  display: none;
  cursor: not-allowed;
}

form .button{
  height: 45px;
  margin: 45px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

form .button input{
  height: 100%;
  width: 50%;
  outline: none;
  color: #FFFFFF;
  border: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  background: #006400;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4 ease;
  border-bottom: 2px solid rgba(0,0,0,0.2);

}

form .button input:hover{
  background: #95E580;
}

form .text{
  font-size: 14px;
  font-weight: 500;
  color: #343434;
}

.input-box i{
  position: absolute;
  font-size: 17px;
  
  
}


form .text a{
  text-decoration: none;
}

form .text a:hover{
  text-decoration: underline;
}

.condition{
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  margin-top: 30px;
}

.text1{
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #343434;
}

form .text1 a{
  text-decoration: none;
}

form .text1 a:hover{
  text-decoration: underline;
}

.error{
  color: red;
  font-size: 13px;
  font-weight: 500;
}

.info{
  font-size: 11px;
  font-weight: 500;
}

@media (max-width: 584px){
  .container{
    max-width: 100%;
  }

  form .user-details .input-box{
    margin-bottom: 15px;
    width: 100%;
  }


  /* .container form .user-details{
    max-height: 300px;
    overflow-y: scroll;
  }

  .user-details::-webkit-scrollbar{
    width: 0;
  } */
}

