.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.form-control {
  width: 300px;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
}
.form-button {
  width: 300px;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 15px;
}
#verificationCodeContainer {
  padding: 30px;
  width: 300px;
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  color: #333;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

.close {
  display: none;
}

.password-feedback {
  color: red;
  display: none;
  margin-top: 10px;
}
