/*
 * Copyright (c) 2022-2025, Wollette Ltd and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES, OR THIS FILE HEADER.
 *
 * Proprietary and confidential. Unauthorized copying of this file, via any medium
 * is strictly prohibited.
 */

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input[type="password"],
.password-wrapper input[type="text"] {
  width: 100%;
  padding-right: 40px; /* Space for the eye icon */
  box-sizing: border-box;
  height: 38px;
}

.togglePassword {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.togglePassword i {
  font-size: 20px;
  color: #333;
}