
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #a8e063, #56ab2f);  margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  h1 {
    margin-bottom: 20px;
    color: white;
  }
  
  form {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
  }
  
  label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #444;
  }
  
  input, select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border 0.3s;
  }
  
  input:focus, select:focus {
    border-color: #007BFF;
    outline: none;
  }
  
  button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background-color: #56ab2f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
    .password-wrapper {
        position: relative;
        margin-bottom: 15px;
      }
      
      .password-wrapper input {
        width: 100%;
        padding: 12px 45px 12px 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 15px;
        box-sizing: border-box;
        background-color: #e9f2fc;
      }
      
      .password-wrapper i {
        position: absolute;
        top: 60%;
        right: 14px;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        font-size: 18px;
        color: #666;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .password-wrapper i:hover {
        color: #333;
      }

      button:hover {
        background-color: #4CAF50;
    }
      
  