
    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to right, #0b1a2f,rgb(16, 30, 49));
      color: #fff;
      min-height: 100vh;
    }

      
    .navbar {
  background-color: transparent;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 2px #00f0ff;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo {
  height: 45px;
  margin-left: 5px;
}

.navbar-brand {
  font-size: 22px;
  font-weight: bold;
  color: gold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(255, 215, 0, 0.6);
}

.navbar-right {
  margin-right: 2px;
}

.go-back-link {
  background-color: var(--accent-glow);
  color: #000;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.go-back-link:hover {
  background-color: #00b8cc;
}

    .form-container {
      background-color:rgb(16, 31, 53);
      border-radius: 1rem;
      padding: 2.5rem 2rem;
      box-shadow: 0 4px 10px gold;
      max-width: 480px;
      width: 100%;
    }
    input:focus {
      outline: none;
      box-shadow: 0 0 8px #d4af37;
      background-color:rgb(13, 32, 58);
    }
    button.primary-btn {
      background-color: #d4af37;
      color: #111827;
      font-weight: 700;
      transition: background-color 0.3s ease;
    }
    button.primary-btn:hover {
      background-color: #b38f17;
    }
    .social-btn {
      background-color: white;
      color: black;
      border-radius: 9999px;
      padding: 0.5rem 1rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      user-select: none;
    }
    .social-btn:hover {
      background-color: #f3f3f3;
      box-shadow: 0 0 15px #d4af37;
    }
    .social-icons {
      width: 18px;
      height: 18px;
    }
    @media (max-width: 768px) {
      .logo {
        position: relative;
        top: auto;
        left: auto;
        text-align: center;
        margin: 1rem auto;
        font-size: 2rem;
      }
      .company-name {
        font-size: 0.9rem;
      }
    }
    li{
      color: white;
      transition: 0.5s;
      margin-left: 30px;
    }
    li:hover{
      color: gold;
      transition: 0.5s;
      border-bottom: 2px solid gold;
    }
  