    * {
      margin: 0;
      padding: 0;
      color: black;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
    }
    .register-box {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
      padding: 30px;
      width: 360px;
      border-radius: 20px;
      color: white;
    }
    .register-box h2 {
      color: #000000;
      text-align: center;
      margin-bottom: 20px;
      font-size: 24px;
    }
    .form-group {
      position: relative;
      margin-bottom: 15px;
    }
    .form-group input {
      width: 100%;
      padding: 12px 15px;
      background: transparent;
      border: 1px solid #ddd;
      border-radius: 10px;
      color: rgb(0, 0, 0);
      font-size: 16px;
    }
    .form-group input::placeholder {
      color: #030303;
    }
    .form-group i.toggle-icon {
      position: absolute;
      right: 12px;
      top: 12px;
      color: #000000;
      cursor: pointer;
    }
    .register-box button {
      width: 100%;
      padding: 12px;
      background: rgba(255, 255, 255, 0.3);
      border: none;
      border-radius: 10px;
      font-size: 16px;
      color: rgb(5, 5, 5);
      cursor: pointer;
      transition: background 0.3s;
    }
    .register-box button:hover {
      background: rgba(255, 255, 255, 0.5);
    }
    .Error {
      font-size: 13px;
      color: #ffb3b3;
      text-align: center;
      margin-bottom: 10px;
    }