body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
}

h2 {
    position: absolute;
    top: 100px;
    width: 100%;
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 6px;
}

#message {
    position: absolute;
    top: calc(50% + 180px);
    width: 100%;
    text-align: center;
}

a {
    display: block;
    text-align: center;
    margin-top: 20px;
}