

a {
  text-decoration: none;
}
h4 {
  font-family: "calibri", sans-serif;
  font-size: 11pt;
  margin-top: 5px;
  margin-bottom: 0px;
}

body {
  background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


label {
  font-family: "Raleway", sans-serif;
  font-size: 11pt;
}
#forgot-pass {
  color: red;
  font-family: "Raleway", sans-serif;
  font-size: 10pt;
  margin-top: 3px;
  text-align: right;
}
#card {
  background: #fbfbfb;
  border-radius: 8px;
  box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.65);
  height: 580px;
  margin: 6rem auto 8.1rem auto;
  width: 400px;
}
#card-content {
  padding: 8px 33px;
}
#card-title {
  font-family: "Raleway Thin", sans-serif;
  letter-spacing: 2px;
  padding-bottom: 2px;
  text-align: center;
}
#signup {
  color: #62adb5;
  font-family: "Raleway", sans-serif;
  font-size: 10pt;
  margin-top: 16px;
  text-align: center;
}
#submit-btn {
  background: -webkit-linear-gradient(right, #62adb5, #7beff7);
  border: none;
  border-radius: 21px;
  box-shadow: 0px 1px 8px lightblue;
  cursor: pointer;
  color: white;
  font-family: "Raleway SemiBold", sans-serif;
  height: 42.3px;
  margin: 0 auto;
  margin-top: 50px;
  transition: 0.25s;
  width: 153px;
}
#submit-btn:hover {
  box-shadow: 0px 1px 18px #62adb5;
}
.form {
  align-items: left;
  display: flex;
  flex-direction: column;
}
.form-border {
  background: -webkit-linear-gradient(right, #a6f77b, #2ec06f);
  height: 1px;
  width: 100%;
}
.form-content {
  background: #fbfbfb;
  border: none;
  outline: none;
  padding-top: 14px;
}
.underline-title {
  background: -webkit-linear-gradient(right, #62adb5, #7beff7);
  height: 2px;
  margin: -1.1rem auto 0 auto;
  width: 90px;
}
.underline-title1 {
  background: -webkit-linear-gradient(right, #62adb5, #7beff7);
  height: 2px;
  width: 100%;
  margin-top: 8px;
}



    /* Works on Firefox */
    * {
      scrollbar-width: thin;
      scrollbar-color: salmon blue;
    }

    /* Works on Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
      width: 6px;
    }

    *::-webkit-scrollbar-track {
      background: white;
    }

    *::-webkit-scrollbar-thumb {
      background-color: salmon;
      border-radius: 2px;
      border: 8px solid lightblue;
    }


    