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

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

button, .button {
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

button:hover, .button:hover {
    background-color: #0056b3;
}

p {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    word-break: break-all;
}

a {
    color: #007BFF;
}

a:hover {
    text-decoration: underline;
}
