* {
    margin: 0;
      /* padding: 0; */
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
  }
  
  /* Header */
  .header {
    background-color: white;
    color: #fff;
    text-align: center;
    padding: 20px;
   /* font-size: 24px; */
  }
  
  /* Registration Box */
  .register-box {
    background-color: #fff;
    width: 80%;
    max-width: 500px;
    margin: 50px auto;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  
  .register-box h1 {
    text-align: center;
    font-size: 28px;
    color: #009324;
    margin-bottom: 30px;
  }
  
  /* Textbox */
  /* .textbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f2f2f2;
  } */

  .textbox {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #f2f2f2;
  }
  
  .show-password-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
  }
  
  .textbox i {
    padding: 10px;
    font-size: 20px;
    color: #009324;
  }
  
  .textbox input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    color: #009324;
    background-color: transparent;
  }
  
  .textbox input:focus {
    outline: none;
  }
  
  /* Button */
  .btn {
    display: inline-block;
    width: 100%;
    border: none;
    background-color: #009324;
    color: #fff;
    font-size: 18px;
    padding: 12px;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #007c1e;
  }
  
  /* 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 */
  /* .show-password-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 10px;
  } */
  
  .show-password-button img {
    width: 1.5rem;
    height: auto;
    margin-left: 2px;
      }
  
  .show-password-button:focus {
    outline: none;
  }
  
  .show-password-button:hover img {
    filter: brightness(110%);
  }

  @media (min-width: 390px) and (max-width:390px){
    .close-icon img {
    margin-right: 19.5vh;
  }
  }