button{
outline: none;
position: relative;
cursor: pointer;
display: block;
text-align: center;
border: 2px solid #FFF;
border-radius: 30px;
background: linear-gradient(#ffae00 0%, #ff7c00 100%);
box-shadow: 0 0 10px #024888;
color: #FFF;
padding: 1em 2em;
font-family: sans-serif;
font-size: 16px;
font-weight: 700;
line-height: 1;
letter-spacing: .2em;
text-transform: uppercase;
transition: all .2s ease;
}
button:focus,
button:hover{
background: linear-gradient(#ffbb00 0%, #ff8e1d 100%);
}
button:active{
position: relative;
top: 2px;
box-shadow: 0 0 5px #032d54;
}