/*
Theme Name: Fairness Factor Tailwind
Theme URI: https://yourwebsite.com/
Author: Your Name
Description: A lightweight WordPress theme using Tailwind.
Version: 1.0
*/
.login_btn{
    text-decoration: none !important;
}
.login_btn a{
    background-color: #75D2A6;   /* bg-blue-500 */
    color: white;                /* text-white */
    font-weight: bold;          /* font-bold */
    padding: 12px 45px;      /* py-2 px-4 */
    border-radius: 18px;      /* rounded */
    transition: background-color 0.2s ease-in-out;
    border-radius: 18px;
    margin-left: 0;
  }

  .login_btn a:hover {
    color: #000;                /* text-white */
  }
  
  
/* Desktop only (min-width: 1024px) */
@media (min-width: 1024px) {
  .login_btn a {
    margin-left: 18px;
  }
}

.mobileNav ul li a{
  color:white;
}

body {
    font-family: 'Nuckle', sans-serif; /* Fallback to a generic sans-serif */
}
