form {
    padding: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    background-color: white;
}

.field {
    margin-bottom: 15px;
    width: 100%;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s ease;
}

input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

#message {
    height: 100px;
}

#button {
    background-color: green;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

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