.header-title {
  text-align: center;
  color: #199A8E;
  font-size: 30px;
  font-weight: 700;
}

.login-wrapper {
  margin: 25px auto auto;
  width: 1200px;
  display: flex;
  min-height: 560px;
  background: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.left-section {
  width: 40%;
  background: #199A8E;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 20px;
}

.left-section img {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
}

.right-section {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.form-toggle {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.form-toggle button {
  background: none;
  border: none;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  color: #555;
}

.form-toggle button.active {
  color: #199A8E;
  border-bottom: 2px solid #199A8E;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #555;
}

.submit-btn {
  width: 100%;
  background-color: #fff;
  color: #199A8E;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 15px;
  border: 2px solid #199A8E;
}

.submit-btn:hover {
  cursor: pointer;
  background-color: #199A8E;
  color: #fff;
  transition: all 0.3s ease;
}

#signup-form {
  display: none;
}

.forgot-password {
  display: inline-block;
  margin: 10px auto;
  text-align: center;
  color: #199A8E;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

.code-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.code-digit {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.code-digit:focus {
  border-color: #199A8E;
}

.code-digit.error {
  border-color: red;
  background-color: #ffebee;
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.modal-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.resend-btn, .confirm-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.resend-btn {
  background-color: #fff;
  color: #199A8E;
  border: 2px solid #199A8E;
}

.hide-btn {
  background-color: #fff;
  color: #787878;
  border: 2px solid #787878;
  cursor: not-allowed;
  opacity: 0.5;
}

.confirm-btn {
  background-color: #199A8E;
  color: #fff;
}

.resend-btn:hover {
  background-color: #ddd;
}

.confirm-btn:hover {
  background-color: #157A6E;
}

#timer, #forgot-timer {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}


.reset-password__title {
  margin: 10px 0;
}

.reset-password__desc{
  margin: 20px 0;
}
