form {
    width: 300px;
    margin: 20px auto;
    padding: 20px;

    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px #cccccc;
}

label {
    display: block;
    margin-bottom: 5px;
}

textarea {
    width: 95%;
    margin-bottom: 10px;
    padding: 2px 5px;

    font-size: 14px;
    font-family: "Roboto", sans-serif;

    border: 1px solid #cccccc;
    border-radius: 5px;
}

input[type="submit"] {
    display: inline-block;
    margin: 0 5px;
    padding: 6px 15px;

    color: #ffffff;

    background-color: #2c3e50;
    border: none;
    border-radius: 5px;
}

.buttons {
    margin-top: 10px;

    text-align: center;
}