body, html {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: url('../images/set-of-restaurant-doodles-food-and-drinks-on-black-background-vector.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    background: rgba(0, 0, 0, 0.4);  /* semi-transparent black */
    backdrop-filter: blur(2px);     /* apply blur to background behind */
    -webkit-backdrop-filter: blur(10px); /* for Safari */
    padding: 40px;
    border-radius: 20px;
    width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  
  h1 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  
  form label {
    color: #ddd;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
  }
  
  .input-box {
    position: relative;
    margin-bottom: 20px;
  }
  
  .input-box .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 18px;
  }
  
  .input-box input {
    width: 95%;
    padding: 14px 14px;
    border: none;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
  }
  
  button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #ffd700, #ffcc00);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: linear-gradient(90deg, #e6c200, #d4b000);
  }
  
  .links {
    text-align: center;
    margin-top: 15px;
  }
  
  .links a {
    color: #ffd700;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
  }
  
  .links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .container {
      width: 100%;
      padding: 25px;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    button {
      font-size: 14px;
    }
  }
  