* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  text-decoration: none;
  outline: none;
  user-select: none;
}
    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, #000, #800);
      padding: 12px 20px;
      color: #fff;
      position: relative;
      z-index: 100;
    }

    .navbar .logo {
      font-size: 26px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .navbar .logo a{
    color: #ffffff;
    }
    /* Logo Icon Light Glow */
.navbar .logo i {
  color: #ff0000;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.navbar .logo i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(5px);
  transform: translate(-50%, -50%);
  animation: glowPulse 1.5s infinite ease-in-out;
  z-index: -1;
}

@keyframes glowPulse {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  50%  { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

    .navbar .menu {
      display: flex;
      gap: 20px;
    }

    .navbar .menu a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .navbar .hamburger {
      display: none;
      font-size: 35px;
      cursor: pointer;
    }
    
     .stat-box {
      background: linear-gradient(to bottom, 
      #ffffff 15%,
      #ffebee 67%,
      #ffffff 100%
      ); 
      border-radius: 8px;
      border: 1px solid #ccc;
      width: 100%;
      padding: 20px;
      margin: 12px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .stat-info {
      display: flex;
      flex-direction: column;
    }

    .stat-label {
      font-size: 16px;
      color: #666;
      margin-bottom: 5px;
      letter-spacing: 1px;
    }

    .stat-value {
      font-size: 24px;
      font-weight: bold;
      color: #000;
    }

    .stat-icon {
      font-size: 22px;
      color: #444;
    }

    /* Sidebar */
    .sidebar {
      position: fixed;
      top: 0;
      right: -230px;
      width: 230px;
      height: 100%;
      background: linear-gradient(180deg, #000, #800);
      padding-top: 60px;
      transition: 0.3s;
      z-index: 1000;
    }

    .sidebar.active {
      right: 0;
    }

    .sidebar a {
      display: block;
      padding: 15px 20px;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sidebar a i {
      margin-right: 10px;
    }

    .sidebar .close-btn {
      position: absolute;
      top: 20px;
      right: 15px;
      font-size: 22px;
      cursor: pointer;
      color: #fff;
      font-weight: bold;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 650px;
      margin: 0 auto;
      padding: 15px;
      border: 1px solid #ccc;
      border-top: none;
    }

    .container h1 {
      text-align: center;
      font-size: 25px;
      margin: 30px auto 15px auto;
    }
    
    .container h2 {
     text-align: center;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .container p {
      text-align: center;    
      line-height: 1.6;
      font-size: 15px;
      margin-bottom: 15px;
    }

    /* Cards */
    .card {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 20px;
      overflow: hidden;
      box-shadow: inset 0 8px 8px -4px rgba(0,0,0,0.1);
    }

    .card-content {
      padding: 30px;
    }

    .card-title {
      font-size: 16px;
      font-weight: bold;
      color: #333;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .card-title i {
      color: #2ecc71;
      font-size: 18px;
    }

    .card-content p {
      font-size: 15px;
      color: #333;
      line-height: 1.5;
      text-align: left;
    }

    .card-footer {
      background: #f2f2f2;
      padding: 25px 20px;
      text-align: center;
      border-top: 1px solid #ccc;
    }

    .card-footer a {
      background-color: #28c76f;
      color: #fff;
      font-size:15px;
      padding: 10px 20px;
      border-radius: 4px;
      text-decoration: none;
      border: 1px solid #ccc;
    }

    .card-footer a:hover {
      background-color: #22b36a;
    }
/* Form Container */
label {
  display: block;
  margin-top: 12px;
  font-weight: 400;
  color: #333;
  font-size: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
}

textarea {
height: 150px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00A8FF;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.3);
  outline: none;
}
.password-container {
    position: relative;
}

#toggle-password {
    position: absolute;
    right: 10px;
    top: 55%;
    transform: translateY(-50%);
    cursor: pointer;
}
/* Form Button */
.form-container button,
.btn {
  width: 100%;
  background: linear-gradient(to bottom, #00A8FF, #0083DF);
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

/* Messages */
.message {
  background: #eaf7ff;
  border: 1px solid #b5e0ff;
  color: #055160;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Wallet Strip */
.wallet-strip {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(to bottom, #fff, #ccc);
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 15px auto;
}

.wallet-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Avatar */
.avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  border: 3px solid #e2136e;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.avatar img {
  width: 100%;
  object-fit: contain;
}

/* Account Info */
.account-info small {
  display: block;
  font-size: 14px;
  color: #777;
}

.account-info strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  color: #111;
  letter-spacing: 0.6px;
}

/* Amount */
.amount {
  font-weight: 800;
  font-size: 22px;
  color: #000;
  white-space: nowrap;
}

    /* Footer */
    footer {
      text-align: center;
      background: #fff;
      border-radius: 6px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
     box-shadow: inset 0 8px 8px -4px rgba(0,0,0,0.1);
    }

    .copyright {
      font-size: 13px;
      color: #555;
    }

    .icons {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin-top: 8px;
    }

    .icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #eee;
      color: #555;
      font-size: 16px;
      transition: 0.3s;
      text-decoration: none;
    }

    .icons a:hover {
      background: #0db14b;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .navbar .menu {
        display: none;
      }

      .navbar .hamburger {
        display: block;
      }
        .amount {
    font-size: 20px;
  }
  .account-info strong {
    font-size: 18px;
  }
  .avatar {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }
    }