body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  width: 70%;
  margin: auto;
  text-align: center;
  background-color: black;
  color: whitesmoke;
  font-size: x-large;
}

a {
  text-align: left;
  color: whitesmoke;
  font-size: xx-large;
  text-decoration: none;
  position: relative;
}
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
a:hover::after {
  transform: scaleX(1);
}

.card {
  background-color: rgba(30, 30, 30, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  width: 50%;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
}

.bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}
.bottom a {
  display: inline-block;
  text-align: center;
  position: relative;
  padding: 0 10px;
}
.bottom a::after {
  content: "";
}
.bottom a:hover::after {
  transform: scaleX(0.9);
}

form {
  text-align: left;
}

input {
  display: block;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: large;
  border: none;
  border-radius: 10px;
  width: 95%;
  margin: auto;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

input[type=submit] {
  display: block;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: large;
  border: none;
  color: rgb(30, 30, 30);
  border-radius: 10px;
  width: 55%;
  margin: auto;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
}
input[type=submit]:hover {
  background-color: black;
  color: whitesmoke;
  cursor: pointer;
}

.errormsg {
  color: red;
  font-weight: bold;
}

.secondary {
  font-size: large;
  color: lightgray;
}

#submitreset {
  font-weight: bold;
  display: block;
  border: none;
  width: 55%;
  margin: auto;
  text-align: center;
  padding: 10px;
  background: none;
  color: whitesmoke;
  font-size: xx-large;
  text-decoration: none;
  position: relative;
}
#submitreset:hover {
  cursor: pointer;
}
#submitreset::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
#submitreset:hover::after {
  transform: scaleX(0.6);
}/*# sourceMappingURL=index.css.map */