html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


body {
    padding-top: 5%;
    background: black;
    height: 100vh;
    box-sizing: border-box;
}

@font-face {
    font-family: MuseoSansCyrl300;
    src: url(../fonts/MuseoSansCyrl300.ttf);
}
@font-face {
    font-family: MuseoSansCyrl500;
    src: url(../fonts/MuseoSansCyrl500.ttf);
}

.mainContent{
    width: 60%;
    height: 75vh;
    /*background: white;*/
    position: relative;
    margin: 0 auto;
    background-image: url(../img/logoBack.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    /*margin-top: 10%;*/
}
@media screen and (max-width: 765px) {
    .mainContent{
        width: 80%;
    }
}

.mainText{
    text-transform: uppercase;
    font-family: MuseoSansCyrl500;
    font-size: 20px;
    position: relative;
    margin: 0 auto;
    padding-top: 28%;
    color: white;
    width: 100%;
    text-align: center;
    letter-spacing: 10px;
}
@media screen and (max-width: 800px) {
    .mainText{
        padding-top: 75%;
    }
}
@media screen and (max-width: 765px) {
    .mainText{
        padding-top: 65%;
    }
}

.mainSubText{
    text-transform: uppercase;
    font-family: MuseoSansCyrl300;
    font-size: 9px;
    position: relative;
    margin: 0 auto;
    padding-top: 3%;
    color: grey;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
}
.mainForm{
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;

}
.mainFormBorder{
    border-bottom: 1px solid grey;
    border-top: 1px solid grey;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mainForm input,
.mainForm .success{
    display: inline-block;
    background: none;
    color: white;
    height: 40px;
    text-transform: uppercase;
    font-family: MuseoSansCyrl500;
    letter-spacing: 3px;
    font-size: 10px;
    border: none;
}

@media screen and (max-width: 765px) {
    .mainForm input{
        font-size: 7px;
    }
}

.mainForm input[type=text]{
    color: grey;
    letter-spacing: 4px;
    outline:none;

}
.mainForm input[type=submit]:hover{
    cursor: pointer;
}

input, textarea {outline:none;}
input:active, textarea:active {outline:none;}

.buttonBorder{
    border-left: 1px solid grey;
    padding-left: 10px;
}

.footer{
    color: grey;
    font-family: MuseoSansCyrl300;
    font-size: 12px;
    margin-top: 20px;
}
