    :root {
      --lime: #4caf1a;
      --black: #0a0a0a;
      --off-white: #faf8f4;
      --mid-gray: #6b6b6b;
      --light-gray: #f0eeea;
      --border: #e0ddd8;
    }
    *, *::before, *::after { box-sizing: border-box; }
   a {
  text-decoration: none;
}
    /* ═══════════════════════════════════════
       NAVBAR — fully responsive
    ═══════════════════════════════════════ */
    .navbar {
      background: var(--black) !important;
      padding: 12px 24px;
      position: sticky; top: 0; z-index: 1050;
      box-shadow: 0 2px 20px rgba(0,0,0,0.45);
    }
    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem; font-weight: 900;
      color: var(--lime) !important; letter-spacing: -0.5px;
    }
    .navbar-toggler {
      border: 1.5px solid rgba(255,255,255,0.25) !important;
      border-radius: 8px !important;
      padding: 5px 10px;
      box-shadow: none !important;
      outline: none !important;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    .navbar-nav .nav-link {
      color: #bbb !important; font-size: 0.875rem; font-weight: 500;
      padding: 8px 14px !important; border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active-link {
      color: #fff !important; background: rgba(255,255,255,0.07);
    }
    /* Mobile collapse panel */
    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: #111; border-radius: 12px;
        margin-top: 10px; padding: 16px 14px;
        border: 1px solid #222;
      }
      .navbar-nav { margin-bottom: 12px; }
      .navbar-actions { flex-direction: column; gap: 8px !important; }
      .navbar-actions .btn { width: 100%; text-align: center; justify-content: center; }
      .mobile-divider { border-top: 1px solid #222; margin: 10px 0; }
    }
    .btn-outline-nav {
      border: 1.5px solid rgba(255,255,255,0.45); color: #fff !important;
      border-radius: 50px; padding: 8px 20px; font-size: 0.85rem;
      font-weight: 500; background: transparent; text-decoration: none;
      transition: all 0.2s; white-space: nowrap;
    }
    .btn-outline-nav:hover { background: #fff; color: var(--black) !important; border-color: #fff; }
    .btn-lime-nav {
      background: var(--lime); color: var(--black) !important;
      border-radius: 50px; padding: 8px 22px; font-size: 0.875rem;
      font-weight: 700; border: none; text-decoration: none;
      transition: all 0.2s; white-space: nowrap;
    }
    .btn-lime-nav:hover { background: #b5dc2a; }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      background: var(--off-white);
      padding: 90px 20px 60px;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; border: 1px solid var(--border);
      border-radius: 50px; padding: 6px 16px;
      font-size: 0.8rem; font-weight: 600; color: var(--mid-gray);
      margin-bottom: 28px;
    }
    .hero-badge span { color: var(--black); }
    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4.8rem);
      font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
      max-width: 820px; margin: 0 auto 24px;
    }
    .hero h1 em { font-style: italic; }
    .hero h1 .highlight {
      background: var(--lime); border-radius: 6px;
      padding: 0 8px; font-style: normal;
    }
    .hero p {
      font-size: 1.05rem; color: var(--mid-gray);
      max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .btn-lime-lg {
      background: var(--lime); color: var(--black);
      border-radius: 50px; padding: 14px 34px;
      font-size: 1rem; font-weight: 700; border: none; transition: all 0.2s;
      text-decoration: none; display: inline-block;
    }
    .btn-lime-lg:hover { background: #b5dc2a; color: var(--black); }
    .btn-outline-dark-lg {
      border: 1.5px solid var(--black); color: var(--black);
      border-radius: 50px; padding: 13px 34px;
      font-size: 1rem; font-weight: 500; background: transparent;
      text-decoration: none; display: inline-block; transition: all 0.2s;
    }
    .btn-outline-dark-lg:hover { background: var(--black); color: #fff; }
    /* Hero trust bar */
    .hero-trust {
      margin-top: 48px; display: flex; flex-wrap: wrap;
      justify-content: center; align-items: center; gap: 28px;
    }
    .trust-item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.85rem; color: var(--mid-gray);
    }
    .trust-item i { color: var(--lime); font-size: 1rem; }

    /* ═══════════════════════════════════════
       STUDENT DASHBOARD PREVIEW
    ═══════════════════════════════════════ */
      .dashboard-wrap {
      background: var(--light-gray); border-top: 1px solid var(--border);
      padding: 50px 16px 0; overflow: hidden;
    }
    .dashboard-img-wrap {
      max-width: 1000px; margin: 0 auto;
      background: #fff; border-radius: 16px 16px 0 0;
      box-shadow: 0 -10px 50px rgba(0,0,0,0.13); overflow: hidden;
    }
    .dashboard-img-label {
      background: #f0f0f0; padding: 10px 16px;
      display: flex; align-items: center; gap: 6px;
      font-size: 0.75rem; color: #888;
      border-bottom: 1px solid #e0e0e0;
    }
    .dashboard-img-label span { margin-left: 8px; }
    .dashboard-screenshot {
      width: 100%; display: block;
      object-fit: cover; object-position: top; max-height: 480px;
    }

    /* ═══════════════════════════════════════
       CATEGORIES
    ═══════════════════════════════════════ */
    .categories-section { background: var(--off-white); padding: 80px 20px; }
    .categories-section h2 {
      font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
      letter-spacing: -0.5px; margin-bottom: 12px;
    }
    .category-chip {
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 10px;
      background: #fff; border: 1.5px solid var(--border);
      border-radius: 16px; padding: 24px 16px;
      text-align: center; cursor: pointer;
      transition: all 0.25s; text-decoration: none; color: var(--black);
    }
    .category-chip:hover {
      border-color: var(--lime); background: #f9fbe7;
      transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      color: var(--black);
    }
    .category-chip .cat-icon {
      font-size: 1.8rem; width: 52px; height: 52px;
      border-radius: 14px; display: flex; align-items: center;
      justify-content: center;
    }
    .category-chip .cat-name { font-size: 0.85rem; font-weight: 600; }
    .category-chip .cat-count { font-size: 0.75rem; color: var(--mid-gray); }

    /* ═══════════════════════════════════════
       FEATURED COURSES
    ═══════════════════════════════════════ */
         FEATURED COURSES
    ═══════════════════════════════════════ */
    .courses-section { background: var(--light-gray); padding: 80px 20px; }
    .courses-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.5px; }
    .course-card {
      background: #fff; border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s; height: 100%;
    }
    .course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }
    .course-thumb {
      height: 180px; position: relative; overflow: hidden;
    }
    .course-thumb img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; transition: transform 0.4s ease;
    }
    .course-card:hover .course-thumb img { transform: scale(1.06); }
    .course-thumb-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
    }
    .course-level-badge {
      position: absolute; top: 12px; left: 12px;
      font-size: 0.7rem; font-weight: 700; padding: 4px 11px;
      border-radius: 20px; letter-spacing: 0.5px; z-index: 2;
    }
    .level-beginner { background: #e8f5e9; color: #2e7d32; }
    .level-intermediate { background: #fff8e1; color: #f57f17; }
    .level-advanced { background: #fce4ec; color: #c62828; }
    .course-card .card-body { padding: 18px; }
    .course-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
    .course-meta { font-size: 0.78rem; color: var(--mid-gray); margin-bottom: 10px; }
    .course-meta span { margin-right: 12px; }
    .star-rating { color: #f5a623; font-size: 0.8rem; }
    .course-price { font-size: 0.95rem; font-weight: 700; }
    .course-price .original { font-size: 0.8rem; text-decoration: line-through; color: var(--mid-gray); font-weight: 400; margin-left: 6px; }
    .enroll-btn {
      background: var(--black); color: #fff;
      border: none; border-radius: 8px;
      padding: 8px 18px; font-size: 0.8rem; font-weight: 600;
      transition: background 0.2s; text-decoration: none;
      display: inline-block;
    }
    .enroll-btn:hover { background: #333; color: #fff; }
    
    /* ═══════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════ */
    .how-section { background: var(--off-white); padding: 80px 20px; }
    .how-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.5px; margin-bottom: 56px; }
    .step-card {
      text-align: center; padding: 32px 20px;
      background: #fff; border: 1px solid var(--border);
      border-radius: 20px; height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .step-card:hover { border-color: var(--lime); box-shadow: 0 10px 30px rgba(0,0,0,0.07); }
    .step-num {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--lime); color: var(--black);
      font-weight: 900; font-size: 1.1rem; font-family: 'Playfair Display', serif;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
    }
    .step-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
    .step-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
    .step-card p { font-size: 0.875rem; color: var(--mid-gray); line-height: 1.6; margin: 0; }

    /* ═══════════════════════════════════════
       STATS
    ═══════════════════════════════════════ */
    .stats-band { background: var(--black); padding: 70px 20px; color: #fff; text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 900; color: var(--lime); line-height: 1;
    }
    .stat-label { font-size: 0.875rem; color: #888; margin-top: 6px; }

    /* ═══════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════ */
    .testimonials-section { background: var(--black); padding: 80px 20px; }
    .testimonials-section h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900; color: #fff; margin-bottom: 48px; letter-spacing: -0.5px;
    }
    .testimonial-card {
      background: #161616; border: 1px solid #222;
      border-radius: 16px; padding: 28px; height: 100%;
    }
    .testimonial-card .stars { color: var(--lime); font-size: 0.85rem; margin-bottom: 14px; }
    .testimonial-card p { font-size: 0.875rem; color: #ccc; line-height: 1.7; margin-bottom: 20px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.8rem; color: var(--black); flex-shrink: 0;
    }
    .author-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
    .author-role { font-size: 0.75rem; color: #777; }

    /* ═══════════════════════════════════════
       LEARNING FEATURES
    ═══════════════════════════════════════ */
    .features-section { background: var(--off-white); padding: 80px 20px; }
    .features-section h2 {
      font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
      letter-spacing: -0.5px; margin-bottom: 48px;
    }
    .feature-item {
      display: flex; gap: 18px; margin-bottom: 32px; align-items: flex-start;
    }
    .feature-item:last-child { margin-bottom: 0; }
    .fi-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: var(--lime); display: flex; align-items: center;
      justify-content: center; font-size: 1.3rem; flex-shrink: 0;
    }
    .fi-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
    .fi-desc { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.6; }
    .feature-visual {
      background: #fff; border: 1px solid var(--border); border-radius: 20px;
      padding: 28px; min-height: 340px; display: flex;
      align-items: center; justify-content: center;
    }

    /* ═══════════════════════════════════════
       CTA BAND
    ═══════════════════════════════════════ */
    .cta-band { background: var(--lime); padding: 80px 20px; text-align: center; }
    .cta-band h2 {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
      color: var(--black); margin-bottom: 16px; letter-spacing: -0.5px;
    }
    .cta-band p { color: #333; margin-bottom: 36px; font-size: 1rem; }
    .btn-black {
      background: var(--black); color: #fff !important;
      border-radius: 50px; padding: 14px 36px; font-size: 1rem;
      font-weight: 600; border: none; text-decoration: none;
      display: inline-block; transition: all 0.2s;
    }
    .btn-black:hover { background: #222; }
    .btn-outline-black {
      background: transparent; color: var(--black) !important;
      border: 1.5px solid var(--black); border-radius: 50px;
      padding: 13px 36px; font-size: 1rem; font-weight: 500;
      text-decoration: none; display: inline-block; transition: all 0.2s;
      margin-left: 12px;
    }
    .btn-outline-black:hover { background: var(--black); color: #fff !important; }
    @media (max-width: 576px) {
      .btn-outline-black { margin-left: 0; margin-top: 10px; }
      .cta-band .d-flex { flex-direction: column; align-items: center; }
    }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    footer { background: var(--black); color: #777; padding: 60px 24px 30px; }
    footer .footer-logo {
      font-family: 'Playfair Display', serif; font-size: 1.4rem;
      font-weight: 900; color: var(--lime); margin-bottom: 8px;
    }
    footer .footer-tagline { font-size: 0.85rem; color: #555; }
    footer h6 {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: #fff; margin-bottom: 14px;
    }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 9px; }
    footer ul li a { color: #666; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    footer ul li a:hover { color: #fff; }
    footer .footer-bottom {
      border-top: 1px solid #1a1a1a; margin-top: 48px;
      padding-top: 22px; font-size: 0.78rem; color: #444;
    }
    footer .social-icons a {
      color: #555; font-size: 1.1rem; margin-right: 14px;
      text-decoration: none; transition: color 0.2s;
    }
    footer .social-icons a:hover { color: var(--lime); }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(24px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .fade-up { animation: fadeUp 0.7s ease both; }
    .delay-1 { animation-delay: 0.15s; }
    .delay-2 { animation-delay: 0.3s; }
    .delay-3 { animation-delay: 0.45s; }
  
  
  /* ── SPLIT LAYOUT ── */
    .auth-wrapper {
      flex: 1;
      display: flex;
      min-height: calc(100vh - 64px);
    }
    /* Left panel — illustration / promo */
   /* Left panel */
    .auth-left {
      background: var(--black); color: #fff;
      flex: 0 0 42%; display: flex; flex-direction: column;
      justify-content: center; padding: 60px 48px;
      position: relative; overflow: hidden;
    }
    .auth-left::before {
      content: ''; position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(200,242,58,0.12) 0%, transparent 65%);
      top: -150px; left: -100px; border-radius: 50%;
    }
    .auth-left .brand {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900; color: var(--lime); margin-bottom: 40px;
    }
    .auth-left h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 900;
      line-height: 1.2; margin-bottom: 18px;
    }
    .auth-left p { color: #aaa; font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
 
    /* Steps on left */
    .reg-step {
      display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px;
    }
    .step-circle {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(200,242,58,0.15); border: 2px solid var(--lime);
      color: var(--lime); font-weight: 700; font-size: 0.9rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .reg-step .step-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .reg-step .step-desc { font-size: 0.8rem; color: #888; line-height: 1.5; }
 
    /* Stats row */
    .stat-row {
      display: flex; gap: 24px; margin-top: 36px;
      border-top: 1px solid #222; padding-top: 28px;
    }
    .stat-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 900; color: var(--lime);
    }
    .stat-item .lbl { font-size: 0.75rem; color: #666; margin-top: 2px; }
 
    /* Right panel */
    .auth-right {
      flex: 1; display: flex; align-items: center;
      justify-content: center; padding: 40px 24px;
      background: var(--off-white); overflow-y: auto;
    }
    .auth-form-box { width: 100%; max-width: 460px; }
    .auth-form-box h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.5px;
    }
    .auth-form-box .sub { color: var(--mid-gray); font-size: 0.9rem; margin-bottom: 28px; }
    .auth-form-box .sub a { color: var(--black); font-weight: 600; text-decoration: underline; }
 
    /* Social */
    .btn-social {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 11px 20px; border-radius: 10px;
      font-size: 0.875rem; font-weight: 600; border: 1.5px solid var(--border);
      background: #fff; color: var(--black); cursor: pointer;
      transition: all 0.2s; text-decoration: none; margin-bottom: 10px;
    }
    .btn-social:hover { border-color: #999; background: #fafafa; color: var(--black); }
 
    .divider-text {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.8rem; color: var(--mid-gray); margin: 20px 0;
    }
    .divider-text::before, .divider-text::after { content: ''; flex: 1; height: 1px; background: var(--border); }
 
    /* Form controls */
    .form-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--black); }
    .form-control {
      border: 1.5px solid var(--border); border-radius: 10px;
      padding: 11px 14px; font-size: 0.9rem; background: #fff;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus {
      border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
      outline: none;
    }
    .form-control.is-valid { border-color: #2e7d32; }
    .form-control.is-invalid { border-color: #c62828; }
    .input-group .form-control { border-radius: 10px 0 0 10px !important; }
    .input-group .btn-eye {
      border: 1.5px solid var(--border); border-left: none;
      border-radius: 0 10px 10px 0; background: #fff;
      padding: 0 14px; color: var(--mid-gray); cursor: pointer;
    }
    .input-group .btn-eye:hover { color: var(--black); }
 
    /* Password strength */
    .pw-strength-bar { display: flex; gap: 4px; margin-top: 8px; }
    .pw-segment {
      flex: 1; height: 4px; border-radius: 4px;
      background: var(--border); transition: background 0.3s;
    }
    .pw-label { font-size: 0.75rem; color: var(--mid-gray); margin-top: 4px; }
 
    /* Interest chips */
    .interest-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
    .chip {
      border: 1.5px solid var(--border); border-radius: 50px;
      padding: 6px 14px; font-size: 0.8rem; font-weight: 500;
      cursor: pointer; background: #fff; color: var(--black);
      transition: all 0.2s; user-select: none;
    }
    .chip:hover { border-color: var(--black); }
    .chip.selected { background: var(--black); color: #fff; border-color: var(--black); }
 
    /* Terms checkbox */
    .form-check-input:checked { background-color: var(--black); border-color: var(--black); }
    .form-check-label { font-size: 0.82rem; color: var(--mid-gray); }
    .form-check-label a { color: var(--black); }
 
    /* Submit */
    .btn-submit {
      width: 100%; background: var(--lime); color: var(--black);
      border: none; border-radius: 10px; padding: 13px;
      font-size: 0.95rem; font-weight: 700; cursor: pointer;
      transition: background 0.2s; margin-top: 8px;
    }
    .btn-submit:hover { background: #b5dc2a; }
 
    .form-footer { text-align: center; font-size: 0.82rem; color: var(--mid-gray); margin-top: 20px; }
    .form-footer a { color: var(--black); font-weight: 600; text-decoration: underline; }
 
    /* Progress steps (top of form) */
    .form-steps {
      display: flex; align-items: center; gap: 0; margin-bottom: 28px;
    }
    .form-step-item { display: flex; align-items: center; flex: 1; }
    .form-step-item:last-child { flex: 0; }
    .step-dot {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--border); color: var(--mid-gray);
      font-size: 0.75rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: all 0.3s;
    }
    .step-dot.active { background: var(--black); color: #fff; }
    .step-dot.done { background: var(--lime); color: var(--black); }
    .step-line { flex: 1; height: 2px; background: var(--border); margin: 0 4px; transition: background 0.3s; }
    .step-line.done { background: var(--lime); }
 
    /* Sections (multi-step) */
    .form-section { display: none; }
    .form-section.active { display: block; }
 
    /* Success state */
    .success-box {
      text-align: center; padding: 40px 20px;
    }
    .success-box .success-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--lime); font-size: 2.5rem;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
    }
    .success-box h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; }
    .success-box p { color: var(--mid-gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
 
    @media (max-width: 767px) {
      .auth-left { display: none; }
      .auth-right { padding: 24px 16px; }
      .auth-form-box h1 { font-size: 1.7rem; }
    }
 
    /* Alert */
    .alert-warning { border-radius: 10px; font-size: 0.85rem; border: none; }