@font-face {
  font-family: "Playfair Display";
  src: url("../Fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  src: url("../Fonts/Lato-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display SC";
  src: url("../Fonts/PlayfairDisplaySC-Black.ttf") format("truetype");
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}
  .container {
    margin: auto;
    /* border: 1px solid black; */
    margin-top: 5%;
    background-color: white;
    padding: 20px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 400px;
    transition: transform 0.2s;
  }
  @media(max-width:768px){
  .container {

    width: 100%;
  }
  }
  .container:hover {
    transform: scale(1.02);
  }
  
  h1 {
    text-align: center;
    /* padding-top: ; */
  }
  
  .input-group {
    margin-top: 5%;
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 2%;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin-top: 2%;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  input:focus {
    border-color: #D64942;
    box-shadow: 0 0 5px rgba(92, 184, 92, 0.5);
    outline: none;
  }
  
  button {
    width: 100%;
    padding: 10px;
    margin-top: 5%;
    margin-bottom: 5%;
    background: #eb4f47;
    /* background-color: rgb(247, 95, 40); */
    color: white;
    border: none;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
  }
  
  button:hover {
    background: #D64942;
    /* background-color: orangered; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  #para1 a {
    color: #D64942;
    text-decoration: none;
  }
  
  #para {

    text-align: center;
  }
  
  #para a {
    color: #D64942;
    text-decoration: none;
  }
  
  