/*--------------------------------------------------------------
## Password Page Styling
--------------------------------------------------------------*/

.password-page {
  margin: 0;
  padding: 0;
  overflow: hidden;
  
}

.password-container {
  width: 100vw;
  height: 100vh;
  background-image: url("https://www.feronia.world/cdn/shop/t/1/assets/your-landing.jpg?v=6822995994788330051749448337");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  background: white;
  padding: 10px 15px;
  transition: opacity 0.3s ease;

  &:hover {
    opacity: 0.8;
  }
}

.password-form-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.password-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 15px;
}

.password-input {
  border: none;
  border-bottom: 1px solid #000000;
  background: white;
  padding: 8px 0;
  outline: none;
  font-family: "Venus URW";
  font-size: 14px;
  min-width: 200px;

  &::placeholder {
    opacity: 0.5;
  }

  &:focus {
    outline: none;
  }
}

.password-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Venus URW";
  transition: opacity 0.3s ease;

  &:hover {
    opacity: 0.7;
  }
}
