body {
  font-family: Arial, sans-serif;
  background-color: rgb(45, 64, 89);
  margin: 0;
  padding: 0;
  display: flex;
  /* flex-direction: column; */
  /* justify-content: flex-start; */
  justify-content: center;

  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
}
.signup-form,
.login-form,
.forgot-pass-form,
.reset-form,
.form-user-password {
  background-color: rgb(238, 238, 238);
  padding: 1.25rem;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  width: 18.75rem;
  /* margin-top: 1rem; */
  /* margin-bottom: 1rem; */
}
.signup-form,
.login-form h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
.form-group {
  margin-bottom: 0.9375rem;
}
.form-group,
.login-form label {
  display: block;
  text-align: left;
  margin-bottom: 0.3125rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.625rem;
  border: 0.0625rem solid #ccc;
  border-radius: 0.3125rem;
  box-sizing: border-box;
  font-size: 1rem;
}

.privacy-policy-link,
.need-help-link {
  text-align: center;
  margin-top: 2rem;
  text-decoration: underline rgb(255, 87, 34);
}

.privacy-policy-link a,
.need-help-link a {
  color: rgb(255, 87, 34);
  text-decoration: none;
}
.alert {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9999;
  color: #fff;
  font-size: 1rem;
  /* font-weight: 400; */
  text-align: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 1rem 1rem;
  -webkit-box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.25);
}
.alert--success {
  background-color: #20bf6b;
}
.alert--error {
  background-color: rgb(255, 87, 34);
}
.message-box {
  max-width: 600px;
  margin: 100px auto;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* .form-group input.field-exists {
  border: 0.0625rem solid #ff0000;
}

.form-group input.field-available {
  border: 0.0625rem solid #00ff00;
} */

.form-group .availability-message {
  font-style: italic;
  color: #ff0000; /* Red color for the message */
}

.form-user-data {
  background-color: rgb(238, 238, 238);
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  width: 18.75rem;
  margin-top: 2rem;
}
.form-user-data h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-user-password {
  background-color: rgb(238, 238, 238);
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  width: 18.75rem;
  margin-top: 2rem;
}
.form-user-password h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
.forgot-password {
  margin-top: 1rem;
  text-align: center;
}

.forgot-password a {
  color: rgb(255, 87, 34);
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}
.hidden {
  visibility: hidden;
  opacity: 0;
}
.btn {
  background-color: rgb(34, 40, 49);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  margin-top: 1.5rem;
  text-decoration: none;
}

.btn:hover {
  background-color: #0056b3;
}

.spinner {
  display: none;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  margin-left: 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

button[type='submit'] {
  width: 100%;
  height: 3rem;
  margin-top: 1rem;
  background-color: rgb(34, 40, 49);
  color: #fff;
  padding: 0.625rem;
  border: none;
  border-radius: 0.3125rem;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* button[type='submit']:hover {
  background-color: #0056b3;
} */
