@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.container {
  min-height: 100vh;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  border-radius: 8px;
  max-width: 530px;
  width: 100%;
  background-color: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  padding: 48px;
}

form {
  padding-top: 36px;
}

.form-control {
  text-align: left;
  margin: 8px 0 12px;
}
.form-control label {
  display: block;
  margin-bottom: 4px;
}

.form-control input {
  outline: 0;
  border-radius: 8px;
  background: white;
  width: 100%;
  border: 1px solid #eee;
  padding: 12px 16px;
  box-sizing: border-box;
  font-size: 16px;
  transition: all 0.15s ease-in;
}

.form-control input:focus {
  border-color: #ff7c0f;
}

button {
  width: 100%;
  outline: 0;
  background-image: linear-gradient(37deg, #ff9e0f 14.22%, #ff7c0f 85.72%);

  border: 2px solid #ff7c0f;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
}

button.outline {
  background-image: unset;
  background-color: white;
  color: #ff7c0f;
}

#loading {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #000;
}
