/* === QN Investment Website Styles (Gold Theme) === */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
  }
  
  body {
    background: #f8f7f3;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  /* ===== FORM CONTAINER ===== */
  .form-container {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-top: 6px solid #d4af37; /* Gold accent */
  }
  
  .form-container h2 {
    margin-bottom: 18px;
    color: #d4af37;
    font-weight: 600;
  }
  
  .form-container form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  input:focus,
  select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
    outline: none;
  }
  
  button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.1s;
  }
  
  button:hover {
    background: #b9962f;
  }
  
  button:active {
    transform: scale(0.97);
  }
  
  p {
    font-size: 14px;
    margin-top: 10px;
  }
  
  a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* ===== DASHBOARD ===== */
  .dashboard {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    border-top: 6px solid #d4af37;
  }
  
  .dashboard h2 {
    color: #d4af37;
    margin-bottom: 16px;
    font-weight: 600;
  }
  
  .dashboard p {
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  .dashboard input[type="text"] {
    width: 100%;
    background: #faf9f7;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .dashboard a {
    display: inline-block;
    margin-top: 12px;
    background: #333;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .dashboard a:hover {
    background: #555;
  }
  
  /* ===== INFO BOX ===== */
  ul {
    list-style: none;
    margin-bottom: 15px;
    padding-left: 0;
  }
  
  ul li {
    padding: 8px;
    background: #fff7dc;
    border: 1px solid #f2e1a4;
    border-radius: 8px;
    margin-bottom: 8px;
    color: #444;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 480px) {
    .form-container,
    .dashboard {
      padding: 22px;
      border-radius: 12px;
    }
  
    button {
      padding: 10px;
    }
  
    input, select {
      padding: 10px;
    }
  }
  .pending-container {
    max-width: 450px;
    margin: 8% auto;
    padding: 25px;
    background: white;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #d4af37;
  }
  
  .pending-container h2 {
    color: #d4af37;
    margin-bottom: 15px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 18px;
    background: #d4af37;
    color: white;
    border-radius: 5px;
    text-decoration: none;
  }
  