body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
h1 {
    color: #f7b2f1;
}
form {
    margin-top: 20px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #f5c3fa;
    border-radius: 4px;
}
input[type="submit"] {
    background-color: #660a5a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #f0cef8;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #f5c3fa;
}
th, td {
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
a {
    color: #e2b9d9;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
