
body {
    background: rgb(0, 0, 42); /* Old browsers */
    background: -moz-linear-gradient(45deg, rgba(0, 0, 42, 1) 0%, rgba(191, 0, 64, 1) 51%, rgba(218, 131, 40, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(0, 0, 42, 1) 0%, rgba(191, 0, 64, 1) 51%, rgba(218, 131, 40, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, rgba(0, 0, 42, 1) 0%, rgba(191, 0, 64, 1) 51%, rgba(218, 131, 40, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00002a', endColorstr='#da8328', GradientType=1); /* IE6-9 fallback on horizontal gradient */
    color: white;
    background-attachment:fixed;
    background-repeat:no-repeat;
    background-size:cover;
}
a {
    color:silver;
}
a:hover {
    color:white;
}
.maincontent
{
    color:white;
}
.form-control:focus
{
    color:white;
}
.form-control .checkboxLabel
{
    color:white;
}
.form-control
{
    color:silver;
}
.input-element-row
{
    padding-top:10px;
}

.logo {
    font-size: 70px;
    font-family: "Helvetica Neue", Helvetica, Arial, SansSerif;
    margin:0px;
    padding:0px;
}

.betatag {
    font-size: 20px;
    background-color: #00b0ff;
    color: white;
    border-radius: 5px;
    width: 200px;
    animation-duration: 0.5s;
    animation-name: changeSize;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    float:right;
    position:relative;
    z-index:20;
    top:-50px;
    display:inline-block;
}
.btn-default
{
    color:silver;
}
.btn-default:hover
{
    color:white;
}
.account-links-container .btn-action
{
    color:silver;
}
.account-links-container .btn-action:hover
{
    color:white;
}

@keyframes changeSize {
    from {
        transform: scale(0.2);
        -webkit-transform: scale(0.2) rotate(5deg);
    }

    to {
        transform: scale(1) ;
        -webkit-transform: scale(1)   rotate(-5deg);
    }
}

@media screen and (max-width: 960px) {
    .logo
    {
        font-size:50px;

    }
    .betatag
    {
        font-size:10px;
        width:150px;
    }
    .footercontent
    {
        font-size:10px;
    }
}