body {
    font-family: Arial, sans-serif;
    background-color: #e6f7ff;
    margin: 0;
    padding: 0;
  }
  
  #register-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  h1 {
    text-align: center;
    color: #333;
  }
  
  input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #1e88e5;
  }
  
  a {
    color: #007BFF;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* General Form Styling */
.login-form {
  width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  }
  
  /* Password Container Styling */
  .password-container {
    position: relative;
    width: 80%;
  }
  
  .password-container input {
    width: 100%;
    padding: 10px 40px 10px 10px; /* Space for the eye icon */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Eye Icon Styling */
  .toggle-password {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #6a11cb;
    transition: color 0.3s ease;
  }
  
  .toggle-password:hover {
    color: #2575fc;
  }
  
  
  
