/*stylesheet for login and register page*/
body {
  width: 100%;
  height: 100%;
  background: white;
}

main .logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 15rem;
  padding: 3rem;
}

main .toggle {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

main .toggle .switch {
  font-size: 1.2rem;
  font-weight: bold;
  background: #839796;
  border-radius: 0.3rem;
}

.toggle .switch a {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 14rem;
}

.toggle #active {
  background-color: #072f2e;
}

main .toggle .switch:hover {
  background: #072f2e;
}

.center {
  display: flex;
  justify-content: center;
}

form {
  margin-top: 3rem;
}

form label {
  font-size: 1.2rem;
  color: black;
  font-weight: 500;
}

form input {
  background: #d0d0d031;
  padding: 1rem;
  width: 29rem;
  border: none;
  border-radius: 0.3rem;
  margin: 1.5rem 0;
}

form input:focus {
  outline: 2px solid #072f2e7d;
}

.input-control.success input {
  border: 1px solid #09c372;
}

.input-control.error input {
  border: 1px solid #ff3860;
}

.input-control .error {
  color: #ff3860;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

form .ForgotPassword {
  font-size: 1rem;
  text-align: right;
}

form .ForgotPassword a {
  text-decoration: none;
  color: blue;
}

form button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  background-color: #072f2e;
  color: #fff;
  padding: 1.5rem 12.5rem;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: capitalize;
  cursor: pointer;
}

form button:hover {
  background-color: #072f2ed7;
}

.helpandsupport {
  margin-top: 2rem;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.helpandsupport a {
  text-decoration: none;
  color: blue;
}



/* Additional styles for OTP verification page */
.otp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.otp-container h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  margin-bottom: 1.5rem;
  margin-left: 200px;
  margin-right: 200px;
}

.otp-container p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 2rem;
}

.otp-container .input-control {
  width: 100%;
  text-align: center;
  margin-bottom: 1.5rem;
}

.otp-container input[type="text"] {
  width: 28rem;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 0.3rem;
}

.resend-otp {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

.resend-otp a {
  text-decoration: none;
  color: blue;
}
