/*form styles*/
 #msform {
     text-align: center;
     position: relative;
}
 #msform fieldset {
     position: relative;
}
/*Hide all except first fieldset*/
 #msform fieldset:not(:first-of-type) {
     display: none;
}
 #msform .action-button {
     width: 100px;
     background: #27AE60;
     font-weight: bold;
     color: white;
     border: 0 none;
     border-radius: 1px;
     cursor: pointer;
     padding: 10px 5px;
     margin: 10px 5px;
}
 #msform .action-button:hover, #msform .action-button:focus {
     box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
