    :root {
      --afri-vert: #228B22;
      --afri-orange: #FFA500;
      --afri-jaune: #FFD700;
      --afri-rouge: #FF4500;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: white;
      color: #111827;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* NAVBAR */
    .navbar-afri {
      background: white;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgb(236, 231, 231);
    }

    .navbar-brand {
      font-weight: 700;
      letter-spacing: 0.4px;
      color: #169248;
      display: flex;
      margin-left: 10px;
      align-items: center;
      gap: 0.4rem;
      margin-right: 100px;
    }

    .nav-link {
      color: #14532d !important;
      font-weight: 500;
      position: relative;
      font-size: 0.9rem;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--afri-vert), var(--afri-orange));
      transition: width 0.2s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }
    main {
      flex: 1;
      padding-top: 4.5rem;
    }

    /* Hero */
    .hero {
      background-color: white;
      padding: 3rem 1rem;
    }

    .hero-title {
      font-weight: 700;
      font-size: 2.2rem;
    }

    .hero-subtitle {
      color: #6b7280;
      max-width: 480px;
    }

    .hero-badge {
      background: rgba(34, 139, 34, 0.1);
      color: var(--afri-vert);
      padding: 0.35rem 0.8rem;
      border-radius: 999px;
      font-size: 0.75rem;
      margin-bottom: 0.75rem;
      display: inline-block;
    }

    /* Card */
    .login-card {
      background: #ffffff;
      border-radius: 1.25rem;
      padding: 2rem;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .login-title {
      font-weight: 700;
      font-size: 1.4rem;
    }

    .login-subtitle {
      font-size: 0.85rem;
      color: #6b7280;
    }

    .form-label {
      font-weight: 600;
      font-size: 0.8rem;
    }

    .form-control {
      border-radius: 0.6rem;
      font-size: 0.85rem;
    }

    .form-control:focus {
      border-color: var(--afri-vert);
      box-shadow: 0 0 0 0.15rem rgba(34, 139, 34, 0.25);
    }

    .btn-afri-primary {
      background: var(--afri-vert);
      border: none;
      color: white;
      font-weight: 600;
      padding: 0.7rem;
      border-radius: 999px;
      width: 100%;
    }

    .btn-afri-primary:hover {
      background: #1e7a1e;
    }

    .btn-google {
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      background: white;
      font-size: 0.85rem;
      width: 100%;
      padding: 0.65rem;
    }

    .forgot-link {
      font-size: 0.8rem;
      color: var(--afri-vert);
      text-decoration: none;
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 1rem 0;
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .divider::before,
    .divider::after {
      content: "";
      flex: 1;
      border-bottom: 1px dashed #e5e7eb;
    }

    .divider span {
      padding: 0 0.6rem;
    }

    /* FOOTER */
    footer {
      background: #02070f;
      color: #9ca3af;
      font-size: 0.8rem;
      padding: 0.9rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-links a {
      color: #e5e7eb;
      text-decoration: none;
      margin-right: 1rem;
      font-weight: 500;
      font-size: 0.8rem;
      position: relative;
    }

    .footer-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, var(--afri-orange), var(--afri-jaune));
      transition: width 0.2s ease;
    }

    .footer-links a:hover::after {
      width: 100%;
    }

    .footer-social a {
      color: #e5e7eb;
      margin-left: 0.75rem;
      font-size: 1.05rem;
      transition: color 0.2s ease, transform 0.15s ease;
    }

    .footer-social a:hover {
      color: var(--afri-jaune);
      transform: translateY(-1px);
    }