.body-sup {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: -webkit-linear-gradient(left, #000000, #434343);
  font-family: Emkan;
}

input {
  border: none;
  outline: none;
  background: none;
}

.cont-sup {
  overflow: hidden;
  position: absolute;
  width: 950px;
  height: 470px;
  background: #fff;
  box-shadow:
    0 19px 38px rgba(0, 0, 0, 0.3),
    0 15px 12px rgba(0, 0, 0, 0.22);
}

.form-sup {
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 640px;
  height: 100%;
  padding: 50px 30px;
}

.h2-login {
  width: 100%;
  font-size: 30px;
  text-align: center;
}

label {
  display: block;
  width: 260px;
  margin: 25px auto 0;
  text-align: center;
}

label span {
  font-size: 18px;
  font-weight: 600;
  color: #505f75;
  text-transform: uppercase;
}

.img-sup {
  position: absolute;
  width: 310px;
  height: 470px;
  margin-top: 0;
}

.btn-profile {
  position: absolute;
  color: #ffffff;
  background-color: transparent;
  letter-spacing: 1px;
  padding: 5px;
  font-size: 23px;
  bottom: 10px;
  left: 120px;
  margin-bottom: 0%;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  animation: animate 1s ease-in-out infinite alternate;
  text-decoration: none;
}

@keyframes animate {
  from {
    text-shadow: 3px 1px 10px white;
  }

  to {
    text-shadow:
      0 0 10px white,
      0 0 10px white;
  }
}

.new-user {
  position: absolute;
  color: rgba(255, 255, 255, 0.836);
  bottom: -30px;
  transform: translate(9%, -400%);
  letter-spacing: 1px;
  z-index: 100;
}

.lbl-username {
  display: inline;
  position: absolute;
  transform: translate(-135%, -220%);
}

.lbl-password {
  display: inline;
  position: absolute;
  transform: translate(-134%, -215%);
}

.login-home {
  position: absolute;
  color: transparent;
  background: transparent;
  text-decoration: none;
  background-color: transparent;
  letter-spacing: 1px;
  padding: 5px;
  font-size: 20px;
  margin-top: 215px;
  left: 89px;
}

.forgot-pass {
  position: absolute;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  margin-top: 180px;
  cursor: pointer;
  margin-left: 265px;
}

/* ============================================
   PASSWORD TOGGLE STYLES
   ============================================ */

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 35px;
}

.toggle-password {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #505f75;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.toggle-password:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.toggle-password:active {
  transform: translateY(-50%) scale(0.95);
}

.toggle-password svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Focus state for password input */
.password-wrapper input:focus + .toggle-password {
  color: #667eea;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  .cont-sup {
    width: 90%;
    height: auto;
    flex-direction: column;
  }

  .form-sup {
    width: 100%;
    position: relative;
    padding: 30px 20px;
  }

  .img-sup {
    display: none;
  }

  .sub-cont-sup {
    position: relative;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .new-user {
    position: relative;
    transform: none;
    bottom: auto;
    text-align: center;
  }

  .btn-profile {
    position: relative;
    left: auto;
    bottom: auto;
    display: block;
    text-align: center;
    margin-top: 10px;
  }

  .forgot-pass {
    position: relative;
    margin: 20px auto 0;
    display: block;
    text-align: center;
    margin-left: 0;
  }
}
