body {
    font-family: sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
}
h1 {
    margin-bottom: 10px;
    color: #0c9;
}
form {
    text-align: center;
    background-color: #fff;
    margin: 15px 0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    width: 300px;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0c9;
}
p {
    text-align: center;
    margin: 8px 0;
    font-size: 16px;
    color: #333;
}
label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #9c9;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #6c6;
}
.message {
    color: red;
    text-align: center;
    margin-top: 10px;
}
a {
    display: inline-block;
    margin-top: 10px;
    color: #9c9;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}