/* COMMON */

html, body
{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body
{
    background: #010207 url(../img/background.jpg) 0 0 no-repeat;
    font: 18px/1.2 Lato, sans-serif;
    position: relative;
    text-align: center;
}

a
{
    color: #53A7EC;
}

a:hover
{
    color: #8CC5F2;
}

::-webkit-input-placeholder
{
    color:#333;
}

input:-moz-placeholder
{
    color:#333;
}

input[type=text]
{
    padding: 6px;
    font-size: 18px;
    color: #000;
    border: 1px solid #000;
    outline: none;

    background: -moz-linear-gradient(top, rgba(180, 180, 180, 1), rgba(220, 220, 220, 1));
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(180, 180, 180, 1)), to(rgba(220, 220, 220, 1)));
    background: -webkit-linear-gradient(top, rgba(180, 180, 180, 1) 0%, rgba(220, 220, 220, 1) 100%);
    background: -o-linear-gradient(top, rgba(180, 180, 180, 1) 0%, rgba(220, 220, 220, 1) 100%);
    background: -ms-linear-gradient(top, rgba(180, 180, 180, 1) 0%, rgba(220, 220, 220, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(180, 180, 180, 1) 0%, rgba(220, 220, 220, 1) 100%);

    -webkit-box-shadow: inset 0 -1px 0 #eee, inset 0 4px 16px rgba(0, 0, 0, 0.66);
    -moz-box-shadow: inset 0 -1px 0 #eee, inset 0 4px 16px rgba(0, 0, 0, 0.66);
    box-shadow: inset 0 -1px 0 #eee, inset 0 4px 16px rgba(0, 0, 0, 0.66);

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

input[type=text]:focus
{
    border-color: #0D4573;

    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(82, 168, 236);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(82, 168, 236);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgb(82, 168, 236);
}

input[type=submit]
{
    display: inline-block;
    font-size: 18px;

    padding: 6px 15px;
    color: #e5f4ff;
    text-shadow: 0 -1px 0 #005a94;
    cursor: pointer;
    border: 1px solid #004372;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    background-color: #0080c7;
    background: -moz-linear-gradient(top, #0092d9, #006ab0);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#0092d9), to(#006ab0));
    background: -webkit-linear-gradient(top, #0092d9 0%, #006ab0 100%);
    background: -o-linear-gradient(top, #0092d9 0%, #006ab0 100%);
    background: -ms-linear-gradient(top, #0092d9 0%, #006ab0 100%);
    background: -webkit-linear-gradient(top, #0092d9 0%, #006ab0 100%);

    -webkit-box-shadow: 0px 1px 0px #2ec4ff;
    -moz-box-shadow: 0px 1px 0px #2ec4ff;
    box-shadow: inset 0px 1px 0px #2ec4ff;
}

input[type=submit]:hover
{
    color: #fff;

    background-color: #007acb;
    background: -moz-linear-gradient(top, #00acff, #007acb);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#00acff), to(#007acb));
    background: -webkit-linear-gradient(top, #00acff 0%, #007acb 100%);
    background: -o-linear-gradient(top, #00acff 0%, #007acb 100%);
    background: -ms-linear-gradient(top, #00acff 0%, #007acb 100%);
    background: -webkit-linear-gradient(top, #00acff 0%, #007acb 100%);
}

input[type=submit]:active
{
    background-color: #006ab0;
    background-image: none;
    border: 1px solid #00456A;

    -webkit-box-shadow: inset 1px 1px 6px #003157;
    -moz-box-shadow: inset 1px 1px 6px #003157;
    box-shadow: inset 1px 1px 6px #003157;
}

/* STARS BACKGROUND */

.stars
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars.large
{
    background: url(../img/stars_large.png) 0 0 repeat;
}

.stars.small
{
    background: url(../img/stars_small.png) 0 100px repeat;
}

/* VERTICAL ALIGN HELPER */

#helper
{
    content: "";
    display: -moz-inline-box;
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0px;
    zoom: 1;
    //display: inline;
}

/* CONTENT */

#content
{
    display: -moz-inline-box;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    //display: inline;
    vertical-align: middle;
}

/* PANEL */

#panel
{
    padding: 30px;
    margin-top: 10px;
    border-radius: 10px;
    color: #fff;

    background: #000;
    background: rgba(0, 0, 0, 0.75);
    background: -moz-linear-gradient(top, rgba(24, 24, 24, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(24, 24, 24, 0.5)), color-stop(100%, rgba(0, 0, 0, 0.75) 100%));
    background: -webkit-linear-gradient(top, rgba(24, 24, 24, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    background: -o-linear-gradient(top, rgba(24, 24, 24, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    background: -ms-linear-gradient(top, rgba(24, 24, 24, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    background: -webkit-linear-gradient(top, rgba(24, 24, 24, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%);

    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* UNDER CONSTRUCTION */

h1
{
    font-size: 28px;
    margin-bottom: 30px;
}

/* SUBSCRIBE */

#subscribe-form
{
    position: relative;
}

#subscribe-form > *
{
    margin: 0 5px;
}

#subscribe > p
{
    font-size: 24px;
    margin-bottom: 10px;
}

#subscribe-tooltip
{
    position: absolute;
    width: 100%;
    margin-top: 5px;
}

#subscribe-tooltip.success
{
    color: #0f0;
}

#subscribe-tooltip.error
{
    color: #f00;
}

/* DESCRIPTION */

#description
{
    margin: 30px 0;
    font-size: 18px;
}

/* SOCIAL */

#social > a
{
    margin: 0 15px;
    opacity: 0.5;
}

#social > a:hover
{
    opacity: 1;
}

/* POSTSCRIPTUM */

#postscriptum
{
    margin-top: 30px;
    font-size: 16px;
}

/* COUNTDOWN */

#countdown
{
    margin-top: 10px;
    font-family: Orbitron, sans-serif;
    font-size: 48px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.66);
    text-align: center;
}

#countdown > div
{
    display: inline-block;
    margin: 0 20px;
}

.countdown-text
{
    font-size: 24px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}