* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.6s;
       -moz-transition: all 0.6s;
         -o-transition: all 0.6s;
            transition: all 0.6s;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: -moz-none;
        -ms-user-select: none;
         -o-user-select: none;
	        user-select: none;
}

:after, :before{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
    background-color: #000;
    background-image: url("../img/bg.png");
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}

body {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    background-color: #000;
    background-image: url("../img/bg.png");
}

section {
    position: relative;
    z-index: 999999999999999999999999999999999999999999999999999999999999;
    padding: 10px 20px 20px 20px;
    margin: 0 auto 20px auto;
    max-width: 50%;
    background: rgba(51,49,52, .7);
    border: 1px dashed #5f5f5f;
    border-radius: 9px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
       -moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
         -o-box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
            box-shadow: 0px 0px 15px 0px rgba(255,255,255,1);
}


section:after {
    content: '#';
    position: absolute;
    left: 10px;
    top: 20px;
    font-size: 1rem;
    border-radius: 50%;
    text-transform: uppercase;
    font-family: 'FontAwesome';
    font-weight: normal;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border: 1px dashed #fff;
    background: #ffff;
}



section.warning:after {
    line-height: 30px;
    content: '\f071';
    background: #8a6d3b;
    color: #fcf8e3;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(138,109,59,1);
       -moz-box-shadow: 0px 0px 12px 0px rgba(138,109,59,1);
         -o-box-shadow: 0px 0px 12px 0px rgba(138,109,59,1);
            box-shadow: 0px 0px 12px 0px rgba(138,109,59,1);
    -webkit-animation-name: alert_show;
       -moz-animation-name: alert_show;
         -o-animation-name: alert_show;
            animation-name: alert_show;
    -webkit-animation: alert_show infinite;
       -moz-animation: alert_show infinite;
         -o-animation: alert_show infinite;
            animation: alert_show infinite;
    -webkit-animation-duration: 2s;
       -moz-animation-duration: 2s;
         -o-animation-duration: 2s;
            animation-duration: 2s;
}

section.error:after {
    content: '\f12a';
    background: #a94442;
    color: #F2DEDE;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(169,68,66,1);
       -moz-box-shadow: 0px 0px 12px 0px rgba(169,68,66,1);
         -o-box-shadow: 0px 0px 12px 0px rgba(169,68,66,1);
            box-shadow: 0px 0px 12px 0px rgba(169,68,66,1);
    -webkit-animation-name: alert_show;
       -moz-animation-name: alert_show;
         -o-animation-name: alert_show;
            animation-name: alert_show;
    -webkit-animation: alert_show infinite;
       -moz-animation: alert_show infinite;
         -o-animation: alert_show infinite;
            animation: alert_show infinite;
    -webkit-animation-duration: 2s;
       -moz-animation-duration: 2s;
         -o-animation-duration: 2s;
            animation-duration: 2s;
}

section.success:after {
    content: '\f00c';
    background: #3c763d;
    color: #dff0d8;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(60,118,61,1);
       -moz-box-shadow: 0px 0px 12px 0px rgba(60,118,61,1);
         -o-box-shadow: 0px 0px 12px 0px rgba(60,118,61,1);
            box-shadow: 0px 0px 12px 0px rgba(60,118,61,1);
}

section.info:after {
    content: '\f129';
    background: #31708f;
    color: #d9edf7;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(49,112,143,1);
       -moz-box-shadow: 0px 0px 12px 0px rgba(49,112,143,1);
         -o-box-shadow: 0px 0px 12px 0px rgba(49,112,143,1);
            box-shadow: 0px 0px 12px 0px rgba(49,112,143,1);
}

fieldset {
    position: relative;
    padding: 1em 0.625em 0.75em;
    border: 1px dashed #5f5f5f;
    border-radius: 9px;
    text-shadow: -1px -1px 2px rgba(255, 255, 255, 1);
    color: #fff;
    font-size: 1.3em;
    word-break: break-all;
}

a {
    text-shadow: none;
    color: #fff;
}


legend {
    cursor: pointer;
    padding: 6.9px 8px 0 5px;
}

legend:hover {
    padding: 6.9px 5px 0 8px;
}

legend:hover img {
    -webkit-transform: rotate(180deg);
       -moz-transform: rotate(180deg);
         -o-transform: rotate(180deg);
            transform: rotate(180deg);
}

@media (max-width: 1000px) {
    body {
        vertical-align: top;
        padding: 20% 20px 20px 20px;
    }
    section {
        max-width: 100%;
    }
    fieldset {
        font-size: 1em;
    }
}

@keyframes alert_show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}