@font-face {
  font-family: "Jose";
  src: url("../assets/fonts/JosefinSans-Regular.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Jose";
}

body {
  background: #fff;
}

#navbar {
  padding: 10px;
}
#navbar .navbarCont {
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  background: #22067e;
  border-radius: 10px;
  align-items: center;
}
#navbar .navbarCont .mainLogo {
  font-family: "Magneto";
  font-size: 20px;
}
#navbar .navbarCont a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

#form {
  height: 66vh;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
#form h2 {
  font-family: "Jose";
  font-size: 29px;
  font-weight: 200;
}
#form .form-error {
  color: red;
  background: lightsalmon;
  padding: 14px;
  text-align: center;
}
#form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}
#form form input {
  width: 80%;
  padding: 12px 20px;
  border-radius: 20px;
  border: 1px solid #bfbfbf;
}
#form form input:focus {
  outline: none;
}
#form form button {
  cursor: pointer;
  margin-top: 10px;
  background-color: #000;
  color: #fff;
  padding: 12px 60px;
  width: -moz-max-content;
  width: max-content;
  border: none;
  border-radius: 20px;
  transition: 0.1s ease;
}
#form form button:hover {
  background: #222;
}

#footer {
  margin-top: 60px;
  border-top: 1px solid #b1b1b1;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
#footer h3 {
  font-size: 13px;
  font-weight: 200;
}
#footer h4 {
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 20px;
  font-weight: 200;
}
#footer h4 a {
  text-align: center;
  font-size: 13px;
  text-decoration: none;
  color: #888888;
  transition: 0.1s ease;
}
#footer h4 a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=signin.css.map */