    :root {
      --bg: #1A3263;
      --card-bg: #E8E2DB;
      --primary: #1A3263;
      --secondary: #547792;
      --accent: #FAB95B;
      --text: #1A3263;
      --muted: #6B7280;
    }


    /* ======================================================
       BASE STYLES
       ====================================================== */
    * {
      box-sizing: border-box;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                   Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }

    .container {
      background: var(--card-bg);
      width: 100%;
      max-width: 420px;
      padding: 2.5rem 2rem;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    h1 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-size: 1.8rem;
      font-weight: 600;
    }

    .subtitle {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    /* ======================================================
       "LOGIN" DROPDOWN
       ====================================================== */
    label {
      display: block;
      text-align: left;
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
      color: var(--muted);
    }

    select {
      width: 100%;
      padding: 0.75rem;
      border-radius: 10px;
      border: 1px solid var(--secondary);
      font-size: 1rem;
      margin-bottom: 2rem;
      background: white;
    }

    /* ======================================================
       ACTION BUTTONS
       ====================================================== */
    .actions {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    button {
      padding: 0.9rem 1rem;
      border-radius: 12px;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
    }

    .primary-btn {
      background: var(--accent);
      color: #000;
      font-weight: 600;
    }

    .primary-btn:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    .secondary-btn {
      background: transparent;
      color: var(--primary);
      border: 1px solid var(--secondary);
    }

    .secondary-btn:hover {
      background: var(--secondary);
    }

    /* ======================================================
       FOOTER TEXT
       ====================================================== */
    .footer {
      margin-top: 2rem;
      font-size: 0.8rem;
      color: var(--muted);
    }
	
	
	ul {
		display:inline-block;
		text-align:left;
	}