/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .formRow {
     display: block;
     width: 100%;
     margin-top: 5px;
 }

 .sfButton {
     padding:5px;
     background-color: cyan;
     color:black;
 }

 .sfButton:hover {
     background-color: silver;
 }

 .labelDiv {
     display:inline-block;
     font-weight: bold;
     width:30%;
 }
 .controlDiv {
     display: inline-block;
     
 }

 .controlDiv input {
     padding: 5px;
     border-radius: 1em;
 }

 .text-center {
     text-align: center;
 }