

  *{
    font-family: 'Changa', sans-serif;
  }
  .main{
    height: 100vh;
    position: relative;
  }
  .form-card{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: #ffffffd4;
  }

  .home-logo{
    width: 200px;
  }
  @media(max-width: 767px) {

    .form-card {
        width: 93%;
    }
  }

  div.elem-group {

    margin: 20px 0;

    width: 500px;
    margin: 0 auto;
  }
label{
  display: block;
  padding-bottom: 3px;
  font-size: 15px;
  color: #202020;
}
  div.elem-group.inlined {
    width: 49%;
    display: inline-block;
    float: right;
    margin-right: 1%;
  }



  input, select, textarea {
    border-radius: 2px;
    border: 2px solid #777;
    box-sizing: border-box;
    font-size: 1.25em;

    width: 100%;
    padding: 10px;
  }

  div.elem-group.inlined input {
    width: 95%;
    display: inline-block;
  }

  textarea {
    height: 250px;
  }

  hr {
    border: 1px dotted #ccc;
  }

  .center {
    text-align: center;
  }
  .book-btn{
    margin-top: 25px;
    width: 50%;
    font-size: 20px;
    font-weight: bold;
  }
  button {
    height: 50px;
    background: rgb(64, 121, 243);
    border: none;
    color: white;
    font-size: 1.25em;

    border-radius: 4px;
    cursor: pointer;
  }

  button:hover {
    border: 2px solid black;
  }
