body {
    margin: 0px;
    padding: 0px;
    background-image: url();
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  a {
    text-decoration: none;
  }
  
  h3 {
    font-size: 3em;
    font-weight: bold;
    color: blue;
  }
  .login-page {
    width: 100%;
    height: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
  }
  .form-right i {
    font-size: 100px;
  }
  
  .container {
    border-radius: 10px;
    overflow: hidden;
  }
  
  .welcome {
    background-image: linear-gradient(
      to bottom right,
      rgb(89, 228, 253),
      rgb(47, 159, 250),
      rgb(0, 34, 255)
    );
  }
  
  .btn {
    background-image: linear-gradient(
      to bottom right,
      rgb(89, 228, 253),
      rgb(47, 159, 250),
      rgb(0, 34, 255)
    );
    border: 0px solid transparent;
    color: white;
  }
  
  .btn:hover {
    background-image: linear-gradient(
      to bottom right,
      rgb(89, 228, 253),
      rgb(47, 172, 250),
      rgb(0, 34, 255)
    );
    color: white;
  }
  
  .fs-1 {
    font-family: "verdana";
    font-weight: bold;
  }
  
  .input-group-text {
    background-color: rgba(247, 245, 245, 0.61);
    border: 0px;
    box-shadow: 0px 1px 7px 0px rgba(108, 108, 108, 0.349);
    padding: 10px;
  }
  
  input[type="text"] {
    border: 0px;
    background-color: rgba(247, 245, 245, 0.61);
    font-size: 0.8em;
    box-shadow: 0px 1px 7px 0px rgba(108, 108, 108, 0.349);
    padding: 10px;
  }
  
  input[type="text"]:hover,
  input[type="text"]:focus,
  input[type="text"]:active {
    border: 0px;
    background-color: rgba(247, 245, 245, 0.61);
    font-size: 0.8em;
    box-shadow: 0px 1px 7px 0px rgba(108, 108, 108, 0.349);
    padding: 10px;
  }
  
  input[type="password"] {
    border: 0px !important;
    background-color: rgba(247, 245, 245, 0.61) !important;
    font-size: 0.8em !important;
    box-shadow: 0px 1px 7px 0px rgba(108, 108, 108, 0.349) !important;
    padding: 10px !important;
  }
  
  input[type="password"]:hover,
  input[type="password"]:focus,
  input[type="password"]:active {
    border: 0px !important;
    background-color: rgba(247, 245, 245, 0.61) !important;
    font-size: 0.8em !important;
    box-shadow: 0px 1px 7px 0px rgba(108, 108, 108, 0.349) !important;
    padding: 10px !important;
  }
  
  .label {
    padding: 10px 0px;
  }
  
  .forgot {
    font-size: 0.8em;
    color: rgb(47, 159, 250);
  }
  
  .login-side {
    background-color: rgba(255, 255, 255, 0.76);
  }
  
  label {
    font-size: 0.8em;
    color: gray;
  }
  
  html {
    font-family: "Roboto", sans-serif;
  }
  
  body {
    margin: 0;
  }
  
  p {
    margin: 0;
    margin-bottom: 1.5rem;
  }
  
  h1 {
    margin-bottom: 0;
  }
  
  .img {
    width: 100%;
    height: 30vh;
    background-image: url("../images/pic2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
  }
  
  .img-and-text {
    position: relative;
    min-height: 100vh;
  }
  
  .img-and-text:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-image: url("../images/pic2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    filter: grayscale(0%) invert(0%) contrast(100%) brightness(100%);
  }
  
  .text {
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 10vw, 8rem);
  }
  
  .heading {
    font-size: 3em;
    max-width: 800px;
    font-weight: 400;
    font-family: "Lora", serif;
    margin-bottom: 3rem;
    color: white;
  }
  
  .sub-heading {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    text-indent: 1rem;
    display: flex;
    align-items: center;
    color: rgb(47, 159, 250);
  }
  
  .sub-heading:before {
    content: "";
    display: block;
    width: 1rem;
    height: 3px;
    background: rgb(47, 159, 250);
    float: left;
  }
  
  .button {
    text-decoration: none;
  
    color: white;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    background-image: linear-gradient(
      to bottom right,
      rgb(89, 228, 253),
      rgb(47, 159, 250),
      rgb(0, 34, 255)
    );
  }
  
  @media screen and (max-width: 500px) {
    .heading {
      font-size: clamp(3.5rem, 10vw, 7rem);
      max-width: 800px;
      font-weight: 400;
      font-family: "Lora", serif;
      margin-bottom: 3rem;
      color: white;
    }
  
    .sub-heading {
      text-transform: uppercase;
      font-size: 1.3rem;
      font-weight: bold;
      text-indent: 1rem;
      display: flex;
      align-items: center;
      color: rgb(47, 159, 250);
    }
  
    .sub-heading:before {
      content: "";
      display: block;
      width: 1rem;
      height: 3px;
      background: rgb(47, 159, 250);
      float: left;
    }
  
    .button {
      text-decoration: none;
  
      color: white;
      border-radius: 10px;
      padding: 0.8rem 1.5rem;
      background-image: linear-gradient(
        to bottom right,
        rgb(89, 228, 253),
        rgb(47, 159, 250),
        rgb(0, 34, 255)
      );
    }
  }
  
  .fadeable {
    opacity: 0;
    transform: translateY(2rem);
  }
  
  .fade-in {
    animation-fill-mode: forwards;
    animation-name: fadeIn;
    animation-duration: 2s;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  