*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #eee;
}
.overall-container{
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.container {
    width: 60%;
    /* max-width: 400px; */
    margin: 1rem auto;
    padding: 20px;
    /* border: 1px solid #ccc; */
    /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.6); */
    border-radius: 5px;

  }
  input, select{
    height: 48px;
    width: 100%;
    border-radius: 7px;
    border: 1px solid #eee;
    padding-left: 10px;
  }
  select{
    margin-bottom: 1rem;
  }
  p{
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 500;
  }
  input::placeholder{
    padding-left: 10px;
  }
  select::placeholder{
    padding-left: 10px;
  }
  h4{
    font-size: 2rem;
 
  }
  form{
    margin-top: 2rem;
  }
  input, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  
  button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2rem;
    height: 52px;
    position: relative;
    font-size: 1.3rem;
  }
  /* spinner */
.spinner-border {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  button:hover {
    background-color: #0056b3;
  }
  .banner-image{
    width: 100%;
     height: 70vh
  }
  
  @media screen and (max-width: 769px) {
    .banner-image{
        height: 30vh;
    }
    .container{
      width: 90%;
    }
  }