@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Geist", sans-serif;
}
body {
  font-style: normal;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}
.hide {
  display: none;
}
.login-container {
  margin-top: 50px;
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.08);
}
.login-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.logo {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
}
.login-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}
.login-paragraph {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}
.login-form {
  width: 100%;
}
.label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #3d3746;
  margin-bottom: 8px;
}
.input-field {
  margin-bottom: 16px;
}
.input {
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  padding: 16px;
  outline: 0;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  transition: border 0.2s;
}
.input::placeholder {
  color: #64748b;
}
.input:focus {
  border-color: #4a00ff;
}
.login-submit {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  line-height: 16px;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: #4a00ff;
  padding: 16px 0 15px 0;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 24px;
}
.login-submit:hover {
  background-color: #3700ff;
}
.error {
  font-size: 1rem;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 600;
  color: #e90c0c;
}
/* .login-submit:active {
  transform: scale(0.98);
} */
.or {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.or p {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}
.line {
  width: 45%;
  height: 1px;
  background-color: #e4e4e7;
  border-radius: 10px;
}
.demo-credentials {
  width: 100%;
  background-color: #f8fafc;
  padding: 24px;
  text-align: center;
  margin-top: 8px;
}
.bold {
  color: #000;
  font-weight: 600;
}