body {
  margin: 0;
  font-family: "QuickSand";
}

label {
  padding: 10px 0px 5px 0px;
}

.mainTitle {
  font-size: 48px;
  text-align: center;
}

.subtitle {
  font-size: 20px;
  text-align: center;
}

.loginInput {
  background-color: white;
  border-radius: 5px;
}

.subline {
  display: flex;
  justify-content: space-between;
}

.errorMessage {
  font-size: 13px;
  color: #f81200;
}

.pw-recovery {
  font-size: 13px;
}

.inputContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: bold;
}

button {
  background-color: #f81200;
  width: 100%;
  height: 40px;
  color: white;
  border-radius: 4px;
  outline: none;
  border: none;
  margin-bottom: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #bf0d00;
  transition: background-color 0.3s ease;
}

button:disabled {
  background-color: #a9a9a9;
  opacity: 0.8;
}

input {
  padding: 0 15px;
  height: 40px;
  background-color: #eaeaea;
  border: 1px solid #a9a9a9;
  border-radius: 2\4px;
  outline: none;
}

.submitContainer {
  padding-top: 1rem;
}

.requestReset {
  text-decoration: none;
  color: #000000;
}

.requestReset:hover {
  color: #000000;
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("img/bg.png");
  background-size: cover;
}

.loginContainer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  -webkit-box-shadow: 0px 4px 13px 4px rgb(219 219 219);
  -moz-box-shadow: 0px 4px 13px 4px rgba(219, 219, 219, 1);
  box-shadow: 0px 4px 13px 4px rgb(219 219 219);
  width: 900px;
  border-radius: 5px;
  background-color: white;
}

.loginFormWrapper {
  padding: 75px 100px 150px;
}

.resetWrapper {
  padding: 45px 100px 150px;
}

.emailSentContainer {
  padding: 75px 100px 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.emailIcon {
  margin-top: 40px;
  margin-bottom: 50px;
}

.supportContainer {
  position: absolute;
  left: 25px;
  bottom: 0;
}

.supportEmail {
  text-decoration: none;
  color: #606060;
}

.supportEmail:hover {
  color: #000000;
}

.dimText {
  color: #606060;
}

.versionContainer {
  position: absolute;
  right: 25px;
  bottom: 0;
}

.instructions {
  text-align: center;
  font-size: 18px;
}

.tryAgain {
  text-decoration: none;
  color: #f81200;
}

.tryAgain:hover {
  color: #bf0d00;
  cursor: pointer;
}

.backArrow {
  color: #000000;
  margin-left: 20px;
  margin-top: 25px;
}

.backArrow:hover {
  color: #000000;
  cursor: pointer;
}
