/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 7
   Case Problem 1

   ACGIP Registration Form Style Sheet

   Filename: cg_forms.css
*/

/* Form Layout Styles */

label {
   display: block;
   float: left;
   clear: left;
   margin: 5px 0;
   width: 200px;
}

input, select, textarea {
   display: block;
   float: left;
   margin: 5px 0;
   width: 200px;
}

textarea {
   height: 100px;
}

form p {
   clear: left;
   text-align: center;
   margin-top: 40px; /* cleaner than padding-top */
}

input[type='submit'] {
    background-color: rgb(144, 170, 144);
    color: rgb(245, 245, 165);
    border-radius: 20px;
    float: none;
    display: inline-block;
    font-size: 1.1em;
    height: 30px;
    width: 150px;
    cursor: pointer;
}
