﻿.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}
    
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}
.button {
  padding: 15px 25px;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  /*background-color: #3e8e41;*/
  border: none;
  border-radius: 10px;
  box-shadow: 0 9px #999;
}

.button:hover {/*background-color: #3e8e41*/}

.button:active {
  background-color: #3e8e41;
  box-shadow: 0 5px #666;
  transform: translateY(2px);
}
.fieldset {
    overflow:hidden;
   border: solid 2px #345368;
   padding: 1em;
}