/**
* This is the style sheet for the project buttons
 */

.myLogin {
    margin-top: 3rem;
    -moz-box-shadow: -1px 2px 0px 0px #939393;
    -webkit-box-shadow: -1px 2px 0px 0px #939393;
    box-shadow: -1px 2px 0px 0px #939393;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7892c2), color-stop(1, #04037a));
    background:-moz-linear-gradient(top, #7892c2 5%, #04037a 100%);
    background:-webkit-linear-gradient(top, #7892c2 5%, #04037a 100%);
    background:-o-linear-gradient(top, #7892c2 5%, #04037a 100%);
    background:-ms-linear-gradient(top, #7892c2 5%, #04037a 100%);
    background:linear-gradient(to bottom, #7892c2 5%, #04037a 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7892c2', endColorstr='#476e9e',GradientType=0);
    background-color:#7892c2;
    -moz-border-radius:30px;
    -webkit-border-radius:30px;
    border-radius:30px;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    padding:4px 17px;
    text-decoration:none;
    text-shadow:0px 1px 0px #04037a;
}
.myLogin:hover {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #04037a), color-stop(1, #7892c2));
    background:-moz-linear-gradient(top, #04037a 5%, #7892c2 100%);
    background:-webkit-linear-gradient(top, #04037a 5%, #7892c2 100%);
    background:-o-linear-gradient(top, #04037a 5%, #7892c2 100%);
    background:-ms-linear-gradient(top, #04037a 5%, #7892c2 100%);
    background:linear-gradient(to bottom, #04037a 5%, #7892c2 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#476e9e', endColorstr='#7892c2',GradientType=0);
    background-color: #04037a;
}
.myLogin:active {
    position:relative;
    top:1px;
}
