
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1, h2 {
    color: #333;
}

form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    padding: 10px 15px;
    background: #5cb85c;
    border: none;
    color: white;
    cursor: pointer;
    margin-right: 5px;
}

button:hover {
    background: #4cae4c;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background: #ececec;
    margin: 5px 0;
    padding: 10px;
    border-radius: 3px;
}

#accessLinks {
    margin-top: 20px;
}

#accessLinks a {
    text-decoration: none;
    color: #007BFF;
}

#accessLinks a:hover {
    text-decoration: underline;
}
