@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  box-sizing: border-box;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}
.container2 {
  max-width: 98vw;
  margin: 0 auto;
  padding: 1rem;
  background-color: #fff;
}
.text-center {
  text-align: center;
}
.login .container2 {
  max-width: 500px;
  margin: 3rem auto;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
  background-color: #fff;
}
.input {
  appearance: none;
  display: block;
  width: 100%;
  color: #333;
  border: 1px solid rbg(180, 180, 180);
  background-color: white;
  padding: 10px 20px;
  border-radius: 0.25rem;
}
.input.input-error {
  border: 1px solid red;
}
.input.input-error:focus {
  border: 1px solid red;
}
.input:focus {
  outline: none;
  border: 1px solid #0084ff;
  background-clip: padding-box;
}
.error-message {
  font-size: 0.85rem;
  color: red;
}
.button {
  background-color: #4e148c;
  padding: 15px;
  border: none;
  color: #fff;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}
.button:hover {
  filter: brightness(110%);
}

button:disabled {
  background: #eee !important;
  cursor: not-allowed !important;
  color: #fff !important;
}

#toast {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: green;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}
