.nav-item .nav-link[data-drupal-link-system-path="register"] {
    background-color: #e76d35; /* Set the background color */
    color: white; /* Set the text color */
    padding: 5px 10px; /* Add padding */
    border: none; /* Remove any border */
    border-radius: 5px; /* Add rounded corners */
    font-size: 14px; /* Set the font size */
    text-align: center; /* Center the text */
    cursor: pointer; /* Change the cursor to a pointer */
    text-decoration: none; /* Remove the underline from the text */
    display: inline-block; /* Ensure the button behaves like an inline element */
    transition: background-color 0.3s ease; /* Add a transition effect */
}

.nav-item .nav-link[data-drupal-link-system-path="register"]:hover {
    background-color: #d95e29; /* Darken the background on hover */
}
