 /* Font customization */
  body {
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;
    background-color: #F0ECE9;
  }

  h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color:#635025;
  }

  /* Header logo style */
  header {
    background-color: #F0ECE9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  /* Global card style */
  section.bg-white {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    padding: 2rem;
  }

  section.bg-gradient-to-r {
    border-radius: 28px;
    background: linear-gradient(135deg, #3B82F6, #1E40AF);
    color: white;
  }

  /* Input field style */
  input[type="text"] {
    font-size: 1.2rem;
    background-color: #FAFAFA;
    border: 2px solid #E4E7EC;
    border-radius: 16px;
    padding: 1rem;
    transition: border 0.3s ease;
  }

  input[type="text"]:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    outline: none;
  }

    button {
    color: #E6DCD4;
  }

  /* Button styling */
  button[type="submit"] {
    background: linear-gradient(135deg, #C7B998, #CFCBC2);
    padding: 1rem;
    font-weight: 600;
    border-radius: 16px;
    font-size: 1.1rem;
    color: #000;
    transition: background 0.3s ease;
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.2);
  }

  button[type="submit"]:hover {
    background: #A7915E;
    color: white;
  }

  /* Icon circle */
  .flex.items-start .w-8.h-8 {
    background-color: #F0ECE9;
    border-radius: 16px;
  }

  .flex.items-start i {
    color: #A7915E;
    font-size: 0.9rem;
  }

  /* Footer styling */
  footer {
    background: #1E293B;
    color: #CBD5E1;
  }

  footer h4 {
    color: white;
    font-weight: 600;
  }

  footer a {
    color: #94A3B8;
    transition: color 0.2s ease;
  }

  footer a:hover {
    color: #FFFFFF;
  }

  footer .bg-gray-700:hover {
    background-color: #3B82F6 !important;
  }

  /* CTA buttons in registration */
  .bg-white.text-primary {
    font-weight: 600;
    background-color: white;
    color: #1E40AF;
    transition: 0.3s;
  }

  .bg-dark {
    background-color: #CFCBC2;
  }

  .bg-superdark {
    background-color: #E6DCD4;
  }

  .bg-white.text-primary:hover {
    background-color: #f3f4f6;
  }

  .border-white.text-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Result messages */
  #result.success {
    background-color: #E6F4EA;
    color: #1B5E20;
  }

  #result.error {
    background-color: #FCE8E6;
    color: #B71C1C;
  }
  .text-sm {
    color: #000;
  }
  .text-primary-100{
    color: #000;
  }
  .text-accent {
    color: #000;
  }

  /* Smooth transitions */
  * {
    transition: all 0.2s ease-in-out;
  }
  li {
    font-size: 0.9em;
    color: #a7915e;
    list-style-type: circle;
    margin-left: 29px;
  }