/* Image Preview Styling */
.image-preview {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

#previewImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toggle-icon {
  position: absolute;
  right: 30px;
  top: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  display: none;
  color: #000000;
}

.password-container {
  position: relative;
}

input::-ms-reveal,
input::-ms-clear,
input::-webkit-credentials-auto-fill-button {
display: none;
visibility: hidden;}