body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Title */
h2 {
    margin-bottom: 30px;
    color: #222;
}

/* Form */
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;
    box-sizing: border-box;
}

/* Inputs */
input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

input:focus {
    outline: none;
    border-color: #888;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

button:hover {
    background-color: #2f2f2f;
}

/* Message */
#message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

/* Paragraphs */
p {
    margin-top: 15px;
    text-align: center;
}

/* Links */
a {
    color: #444;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}