/* Add a custom message at the end of the account form */
.account-form::after {
    content: 'Click Contact us below for more information';
    display: block;
    margin-top: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    background-color: green; /* Simulate highlighting */
    padding: 5px;
    border-radius: 5px;
    user-select: text; /* Ensure the text is selectable */
}

/* Styling the "Contact Us" link */
#ContactLink {
    color: green !important; /* Change link color */
    text-decoration: underline !important; /* Optional: Add underline */
    font-weight: bold; /* Optional: Make the text bold */
}

#ContactLink:hover {
    color: purple !important; /* Change hover color */
    text-decoration: none; /* Optional: Remove underline on hover */
}

