/* Add to center the container on the page */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

/* Style for the container that holds the form */
.container {
    text-align: center;
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: white;
}

/* Your existing link styling */
a {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px;
    font-size: 1.2em;
    color: goldenrod;
    text-decoration: none;
    border: 2px dotted goldenrod;
    border-color: goldenrod;
    background-color: black;
    border-radius: 24%;
}
