/* Add a custom message at the end of the account form */
/* Add welcome message in content */
.account-form::after {
    content: '';
    display: block;
    margin-top: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    background-color: #094bb3; /* Simulate highlighting */
    padding: 5px;
    border-radius: 5px;
    user-select: text; /* Ensure the text is selectable */
}
