@font-face {
    font-family: 'gothampro_black';
    src: url('fonts/gothaprobla-webfont.eot');
    src: url('fonts/gothaprobla-webfont.eot?#iefix') format('embedded-opentype'),
    url('fonts/gothaprobla-webfont.svg') format('svg'),
    url('fonts/gothaprobla-webfont.woff') format('woff'),
    url('fonts/gothaprobla-webfont.ttf') format('truetype');
}

body{
    width: 100%;
    overflow: hidden;
    margin: 0;
}

video {
    
}

.content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 600ms linear;
    -moz-transition: opacity 600ms linear;
    -o-transition: opacity 600ms linear;
    transition: opacity 600ms linear;
}

.content.visible{
    opacity: 1;
}

.content .form{
    width: 400px;
    padding: 30px;
    background-color: #FFFFFF;
    //box-shadow: 0 0 5px rgba(0,0,0,0.7);
    border-radius: 10px;
    display: inline-block;
    border: 2px solid #878787;
    font-family: Helvetica, Arial;
}

.content .title{
    font-size: 28px;
    color: rgb(68, 68, 68);
    padding: 15px;
    line-height: 1.4em;
}

.submit_button{
    position: relative;

    text-transform: uppercase;
    color: #FFF;
    font-size: 27px;
    font-family: "gothampro_black", Arial, sans-serif;
    text-align: center;
    height: 66px;
    line-height: 66px;
    background: #C00;
    border-radius: 5px;
    cursor: pointer;
    border: 0;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
}

.submit_button:hover {
    background: #971313;
}

.copyrights{
    font-size: 12px;
    color: #454545;
    line-height: 1.6em;
    margin-top: 20px;
}
.copyrights a{
    color: #2483B9;
    margin-right: 10px;
}
.copyrights a:last-child{
    margin-right: 0;
}
.copyrights a:hover{
    text-decoration: none;
}