* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
  }
  
  /* Header */
  .header {
    background-color: #009324;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 24px;
  }
  
  /* Registration Box */
  .register-box {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    border-radius: 10px;
  }
  
  .register-box h1 {
    text-align: center;
    font-size: 30px;
    color: #009324;
    margin-bottom: 30px;
  }
  
  /* Textbox */
  .textbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f2f2f2;
  }
  
  .textbox i {
    padding: 10px;
    font-size: 20px;
    color: #009324;
  }
  
  .textbox input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 20px;
    color: #009324;
    background-color: transparent;
  }
  
  .textbox input:focus {
    outline: none;
  }
  
  /* Button */
  .btn {
display: block;
    width: 100%;
    border: none;
    background-color: #009324;
    color: #fff;
    font-size: 20px;
    padding: 12px;
    margin-top: 20px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #009324;
  }
  
  /* Link */
  .register-box a {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #009324;
    font-size: 18px;
    text-decoration: none;
  }
  
  .register-box a:hover {
    text-decoration: underline;
  }
  
  .show-password-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
  }
  
  .show-password-button img {
    width: 1.5rem;
    height: auto;
  }
  
  .show-password-button:focus {
    outline: none;
  }
  
  .show-password-button:hover img {
    filter: brightness(110%);
  }
  

@media only screen and (max-width: 600px) {

.show-password-button {
background-color: transparent;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: -50px;
}

.show-password-button img {
  width: 1.5rem;
  height: auto;
}

.show-password-button:focus {
  outline: none;
}

.show-password-button:hover img {
  filter: brightness(110%);
}
}