
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");


body{
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
a{

  text-decoration: none;

}

.carousel{
    max-height: 60vh;
}

.carousel img{
    height: 60vh;
    width: 75%;
}


  
  /* Set a style for all buttons */
  .button {
    width: 100px;
    background-color: #04AA6D;
    color: white;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
  }

  .bigbutton{
    width: 180px;
  }
  
  /* Add a hover effect for buttons */
  button:hover {
    opacity: 0.8;
  }
  
  /* Extra style for the cancel button (red) */
  .cancelbtn {
    width: 100px;
    background-color: #f19933;
    color: white;
    border-radius: 25px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
  }
  
  /* The "Forgot password" text */
  span.psw {
    float: right;
    padding-top: 16px;
  }

  #loader{
    vertical-align: middle;
    display: none;
    width: 30px;
    height: 30px;
    float: right;
  }

  .msg{
    width: 100%;
    margin: 5px auto;
    padding: 8px;
    border-radius: 5px;
    list-style: none;
}

.success{
  color: #fbfffb;
  border: 1px solid green;
  background: #17620E;
}


.error{
  color: #ffffff;
  border: 1px solid red;
  background: #B7312A;
}

  
  /* Change styles for span and cancel button on extra small screens */
  @media screen and (max-width: 300px) {
    span.psw {
      display: block;
      float: none;
    }
    .cancelbtn {
      width: 100%;
    }
  }