@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=EB+Garamond:ital,wght@0,400;0,700;1,400;1,700&display=swap");

input {
  appearance: none;
}
.membership-page {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
}

.login {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/indoor1.jpg") center / cover;
  min-height: 70vh;
}
.login-card {
  margin: 30px 0;
  width: 300px;
  background-color: rgb(215, 44, 44);
  border-radius: 40px;
  border: 3px solid rgb(17, 17, 17);
  box-shadow: 0 0 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
h1 {
  margin-top: 30px;
  font-family: "Lato";
  color: rgb(240, 239, 239);
  font-size: 1.5em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.701);
}
.moshimoWelcome {
  margin: auto;
  margin: 30px;
  text-align: center;
}
.emailVerify {
  margin-bottom: 30px;
  color: white;
  font-family: "Lato";
}
.form-input {
  width: 200px;
  font-family: "Lato";
  font-size: 1em;
  /* text-align: center; */
  padding: 10px;
  border: 1px solid gainsboro;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.56);
}

.login-buttons {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.login-btn {
  all: unset;
  background-color: rgb(255, 255, 255);
  border-radius: 25px;
  padding: 10px;
  width: 50px;
  cursor: pointer;
  outline: none;
  text-align: center;
  border: 1px solid black;
  font-family: "Lato";
  font-size: 1em;
}
.signup-btn {
  background-color: black;
  color: white;
  border-radius: 25px;
  font-size: 1em;
  padding: 10px;
  width: 100px;
  text-align: center;
  cursor: pointer;
  font-family: "Lato";
  border: 1px solid rgb(185, 185, 185);
}
.error-msg {
  color: white;
  font-family: "lato";
  padding: 8px 5px 8px 5px;
  border-bottom: 3px solid black;
  border-top: 3px solid black;
}
