/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Link Styles */
#loginLink, #registerLink {
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    margin: 10px;
    padding: 10px 15px;
    border: 2px solid #3498db;
    border-radius: 5px;
    cursor: pointer;
}

#loginLink:hover, #registerLink:hover {
    background-color: #3498db;
    color: #fff;
}
