@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{
  height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: linear-gradient(135deg, #E2865D, #E2878C);
}

/*--------------Main Container-------------------- */
.container{
  margin: auto;
  max-width: 800px;
  width: 100%;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}



/*--------------input Decoration-------------------- */
.user-details .input-box input{
  height: 25px;
  width: 60%;
  outline: none;
  font-size: 14px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

.input-box * {
  vertical-align: middle;
}

input .checkbox{
  margin-left: 0px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
/*--------------Validate color-------------------- */
.user-details .input-box input:focus,
.user-details .input-box input:valid{
  border-color: #E2878C;
}

/*--------------Alignment-------------------- */
label[for="detail"]{
  font-size: 10px;
  font-weight: 700;
  font-family: 'Poppins',sans-serif;
  width: 90px;
  vertical-align: middle;
  display: inline-block;
}

.content form .user-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3px 0 12px 0;
}
form .user-details .input-box{
  margin-bottom: 2px;
  width: calc(100% / 2 - 1px);
}
/*--------------Button Decoration-------------------- */
 form .button{
   height: 45px;
   margin: 0px 0
 }
 form .button input{
   height: 100%;
   width: 100%;
   border-radius: 5px;
   border: none;
   color: #fff;
   font-size: 18px;
   font-weight: 500;
   letter-spacing: 1px;
   cursor: pointer;
   transition: all 0.3s ease;
   background: linear-gradient(135deg, #E2865D, #E2878C);
 }


 form .button input:hover{
  /* transform: scale(0.99); */
  background: linear-gradient(-135deg, #E2865D, #E2878C);
  }
 /*--------------DropDown Decoration-------------------- */
 .select{
  height: 25px;
  width: 60%;
  outline: none;
  font-size: 14px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
 }
 /*--------------Sub Heading-------------------- */
 .subhead{
  margin-top: 0px;
  margin-bottom: 5px;
  border-bottom: 5px solid #E2878C;
 }

 .subhead span{
  width: 170px;
  color: #fff;
  background:  linear-gradient(135deg, #E2865D, #E2878C);
  display: inline-block;
  border-top-left-radius: 5px;
  border-top-right-radius: 25px;
 }




/*--------------Responsive-------------------- */

 @media(max-width: 584px){
 .container{
  max-width: 100%;
}
form .user-details .input-box{
    margin-bottom: 15px;
    width: 100%;
  }
  form .category{
    width: 100%;
  }
  .content form .user-details{
    max-height: 300px;
    overflow-y: scroll;
  }
  .user-details::-webkit-scrollbar{
    width: 5px;
  }
  }
  @media(max-width: 459px){
  .container .content .category{
    flex-direction: column;
  }


}

/*----------------verification----------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input {
  font-family: "Poppins", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  background-color: #fff;
  min-height: 100vh;
  overflow: hidden;
}




div.vcontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0rem 5rem;
  transition: all 0.2s 0.7s;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}




p {
  text-align:center;
  opacity: 0.4;
 }

 .vcontainer{
  margin: auto;
  max-width: 800px;
  width: 60%;
  height: 68%;
  background-color: rgba(255, 255, 255, 0);
  padding: 25px 30px;
  position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
  }


div.vcontainer {
  z-index: 2;
  background-color: #fff;
  width: 100%;
  padding: 25px 30px;
  border-radius: 30px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}



.title {
  font-size: 2.2rem;
  color: #444;
  margin-bottom: 10px;
}




/*----------input field---------------- */

.input-field {
  max-width: 380px;
  width: 100%;
  background-color: #f0f0f0;
  margin: 10px 0;
  height: 55px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 15% 85%;
  padding: 0 0.4rem;
  position: relative;
}


.input-field i {
  text-align: center;
  line-height: 55px;
  color: #acacac;
  transition: 0.5s;
  font-size: 1.1rem;
}

.input-field input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

.input-field input::placeholder {
  color: #aaa;
  font-weight: 500;
}


.btn {
  width: 150px;
  background-color: #5995fd;
  border: none;
  outline: none;
  height: 49px;
  border-radius: 49px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
  transition: 0.5s;
}

.btn:hover {
  background-color: #4d84e2;
}



 .falsemessage{
   margin: auto;
  max-width: 800px;
  overflow: hidden;
  vertical-align: middle;
  margin: 20px 20px;
  border-radius: 55px;
  position:relative;
   
 }
