* {
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #1e3a8a, #020617);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .page {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 30px 20px;
  }
  
  .logo img {
    width: 90px;
    margin-bottom: 20px;
  }
  
  h1 {
    margin: 0 0 10px;
    font-size: 28px;
  }
  
  .desc {
    color: #c7d2fe;
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  
  label {
    display: block;
    text-align: right;
    margin-bottom: 6px;
    font-size: 14px;
    color: #e5e7eb;
  }
  
  input, select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #334155;
    background: #020617;
    color: #fff;
    margin-bottom: 18px;
    font-size: 14px;
  }
  
  input::placeholder {
    color: #94a3b8;
  }
  
  button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #6366f1, #7c3aed);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  .note {
    margin-top: 15px;
    font-size: 12px;
    color: #facc15;
  }
  /* ===== Loading Bar ===== */

.loading-container {
    width: 100%;
    height: 8px;
    background: #020617;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
    display: none;
  }
  
  .loading-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #7c3aed);
    transition: width 0.06s linear;
  }
  
  /* ===== Success Message ===== */
  
  .success {
    margin-top: 15px;
    font-size: 14px;
    color: #22c55e;
    display: none;
  }
  .task-btn {
    display: none;
    margin-top: 12px;
    padding: 12px;
    width: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
  }
  
  .task-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  .footer {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
  }
  
  
  .footer-small {
    font-size: 11px;
    color: #64748b;
    margin-top: 4px;
  }
  
  /* ===== Responsive Design ===== */

/* Phones */
@media (max-width: 480px) {
    h1 {
      font-size: 22px;
    }
  
    .desc {
      font-size: 13px;
    }
  
    .page {
      padding: 20px 15px;
    }
  
    .logo img {
      width: 70px;
    }
  
    button,
    .task-btn {
      font-size: 14px;
      padding: 12px;
    }
  }
  
  /* Tablets & Small laptops */
  @media (max-width: 768px) {
    .page {
      max-width: 100%;
    }
  }
  