* {
    webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,body {
    height: 100%;
}
body {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    color: #ffffff;
    background: #2D2A22;
}
video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    background: url(../media/poster.png) no-repeat;
    background-size: cover;
    transition: 1s opacity;
}
a {
    color: orange;
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
#wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.column {
    float: left;
    width: 50%;
    padding: 8px;
}
#logo {
    width: 100%;
    max-width: 414px;
    display: block;
    margin: 0 auto;
    padding-top: 20px;
    margin-bottom: 50px;
}
.input {
    margin: 0 auto;
    font-size: 16px;
    border-radius: 3px;
    width: 100%;
    max-width: 302px;
    font-family: 'Rajdhani', sans-serif;
    height: 40px;
    background: white;
    border: 0;
    color: black;
    padding: 0 8px;
    margin-bottom: 15px;
}
.g-recaptcha {
    margin: 0 auto;
    width: 302px;
    margin-bottom: 15px;
    height: 76px;
}
.btn {
    font-weight: 700;
    font-size: 40px;
    font-family: 'Rajdhani', sans-serif;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    width: 100%;
    max-width: 302px;
    height: 60px;
    line-height: 55px;
    background: linear-gradient(#1d7751, #0e382c);
    border: 3px #25793b solid;
    border-radius: 5px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    transition: .1s;
    transform: scale(1);
    cursor: pointer;
    -webkit-user-select: none;
    box-shadow: 0 0 50px rgba(0,117,9,0.5);
    overflow: hidden;
    outline: 0;
}
.btn:active {
    outline: 0;
}
.btn:hover {
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
    transform: scale(1.05);
}
.btn:hover:after {
    left: 400px;
    transition: .3s ease-in-out;
}
.btn:after {
    content: "";
    position: relative;
    top: -120px;
    left: -90px;
    display: block;
    width: 35px;
    height: 150px;
    background: rgba(255, 255, 255, 0.5);
    transform: rotate(35deg);
    -webkit-filter: blur(20px);
    transition: none;
}
#reporting {
    display: none;
    background: linear-gradient(rgba(29, 119, 81, 0.5), rgba(14, 56, 44, 0.5));
    border: 3px rgba(37, 121, 59, 0.5) solid;
    color: rgba(255, 255, 255, .5);
}
#reporting:hover {
    transform: scale(1);
}
#reportbot {
    padding-bottom: 15px;
}
#reportbot > #url, #reportbot > #recaptcha, #reportbot > #report {
    display: block;
}
#reportbot > #profile, #reportbot > #reporting {
    display: none;
}
#reportbot.reporting > #profile, #reportbot.reporting > #reporting {
    display: block;
}
#reportbot.reporting > #url, #reportbot.reporting > #recaptcha, #reportbot.reporting > #report {
    display: none;
}
#profile {
    width: 302px;
    height: 131px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 23px;
}
#avatar {
    font-weight: 500;
    float: left;
    height: 110px;
    padding-right: 10px;
    border-radius: 3px;
}
#name {
    font-weight: 600;
    font-size: 25px;
    color: orange;
    overflow: hidden;
    text-overflow: ellipsis;
}
#status > font {
    font-weight: 600;
}
.icon {
    height: 11px;
    margin-top: 2px;
}
#steam {
    clear: both;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}
textarea:active, textarea:focus {
    outline: 0;
}
textarea {
    overflow: hidden;
    padding: 5px;
    color: white;
    display: block;
    font-family: 'Rajdhani', sans-serif;
    margin: 0 auto;
    height: 205px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #25793b;
    resize: none;
    width: 302px;
    border-radius: 3px;
}
@media only screen and (max-width : 640px) {
    #logo {
        max-width: 250px;
        margin-bottom: 30px;
    }
    .column {
        width: 100%;
    }
}