
    form input, form textarea {
        display: block;    /* Forces it to take up the whole line */
        width: 100%;       /* Makes it fill the width of its container */
        max-width: 500px;  /* Stops it from becoming too wide */
        margin-bottom: 15px; /* Adds space between the fields */
        padding: 8px;      /* Makes the boxes "taller" and easier to type in */
    }
    form textarea {
        height: 200px; /* Adjust this number to make it as tall as you like */
        resize: vertical; /* This allows the user to drag the corner to make it even taller */
}
    form button {height: 30px;
        left: 200px;
        position: relative;
    }
