body{
    height: 90vh;
    justify-content: center;
    display: flex;
    background-color: cadetblue;
    align-self: center;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
}

.search-section{float: left;width: 10%;vertical-align:middle;}
.search-box{float: left; padding-bottom: 20px;}

/* h1 {text-align: center;}

.div {text-align: start;}

.form-header{padding: 8px}

.search-section{float: left;width: 10%;vertical-align:middle;}

.search-box{float: left; }

.form-area{width: 50%;position: relative;flex-direction: column;}

.form-area-2 input{
    width: 100%;
    height: 100%;
    position: relative;
    color: #595f6e;
}

.form-area-2 label{
    position: absolute;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid black;
}

.form-area-2{width: 50%;text-align: center;padding-top: 15px;}

.field-name{text-align: left;} */

.container{
 flex-direction: column;
 width: 65vw;
 height: 90vh;
 border-radius: 5px;
 background-color: #1787E01A;
 padding: 2em;}

/* 
.parent{vertical-align: middle;}

.child-1{display: inline-block;padding: 5px 5px;
  vertical-align: bottom;
}

.child-2{display: inline-block;padding: 5px 5px;
  vertical-align: bottom;
}

.input-box{
    border: none;
    padding-top: 20px;
    width: max-content;
} */
 .form-group{
   margin-bottom: 1em;
   transition: all .3s;
 }
 .form-label{
   font-size: 1em;
   color: #aaa;
   display: block;
   opacity: 1;
   transform: translateY(-1.25em);
   transform-origin: 0.0;
   transition: all .3s;

 }

 .form-control{
   box-shadow: none;
   background-color: rgba(29, 16, 16, 0.02);
   border-radius: 0px;
   border-color: #210c0c;
   border-style: none none solid none;
   width: 80%;
   transition: all .5s;
   padding: 5px;
 }



 .form-control:focus{
   box-shadow: none;
   outline: none;
   border-color: orange;
 }

 .form-control:focus +.form-label,.form-control:not(:placeholder-shown)+.form-label{
   transform: translateY(-2.5em) scale(.8);
 }

 .form-group:focus-within{
   transform: scale(1.05,1.05);
 }

 .button-section{
   float: right;
   padding-bottom: 20px;
 }

 .reset-trigger{
   font-weight: bold;
   color: #fff;
   background:linear-gradient(to bottom right, #b5babd 0%, #F87E7B 100%);
   border-radius: 15px;
   padding: 5px 5px;
   top: 50%;
   text-decoration: none;
   
 }

 .search-trigger{
  font-weight: bold;
  color: #fff;
  background:linear-gradient(to bottom right, #42aaeb 0%, #0944b3 100%);
  border-radius: 15px;
  padding: 5px 5px;
  top: 50%;
  text-decoration: none;
  
}

.form-control-2:hovert, .form-control:focus{
  box-shadow: none;
  border-color: #fff;
}

.phone{
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 2px solid #eee;
  padding-left: 0;
  font-weight: normal;
  background: transparent;  
}

.form-control::-webkit-input-placeholder {
  color: #281515;
}
.form-control:focus::-webkit-input-placeholder {
  font-weight: bold;
  color: #211111;
}

.reset {
  display: none;
  padding: 6px 20px;
  border-radius: 20px;
  background: none;
  border: 2px solid #231a12;
  color: #21160d;
  font-weight: bold;
  transition: all .5s;
  margin-top: 1em;
}
.reset:hover {
  background: #FAB87F;
  color: #fff;
}

tr {
  content: "";
  margin-left: 10px;
}
table {
    border-spacing: 15px;
}
.modal {
  display: none; / Hidden by default /
  position: fixed; / Stay in place /
  z-index: 1; / Sit on top /
  left: 1;
  top: 0;
  right: 1;
  width: 50%; / Full width /
  height: 100%; / Full height /
  overflow: auto; / Enable scroll if needed /

  background-color: rgba(0, 0, 0, 0.171);
  
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; / 15% from the top and centered /
  padding: 20px;
  border: 1px solid #888;
  width: 40%; / Could be more or less, depending on screen size /
}
.close {
  color: #fff;
  transform: scale(1.2)
}

.close:hover,.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: black;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: black;
}