@font-face {
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 400;
    src: local('Comfortaa'), local('Comfortaa-Regular'), url(../../assets/css/comfortaa.light.ttf) format('truetype');
}

* {
    font-family: 'Comfortaa', cursive;
    font-weight: normal;
}

body {
    background: url(../../images/index_background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*
input[type=submit], input[type=button], .btn {
    padding-left:8px;
    padding-right:8px;
    padding-top:2px;
    padding-bottom:2px;
    cursor:pointer;
    border: 0px;
    height: 35px;
    outline:0;
    background-image: linear-gradient(to bottom,#1ba1e2,#1ba1e2);
    background-color:#1ba1e2;
    font-family: Arimo, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
}
*/

input[type=text] {
    background-color: rgb(250, 255, 189) !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
}

input[type=password] {
    background-color: rgb(250, 255, 189) !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
}

input[type=text].iswaiting {
    background-color: #c0c0c0 !important;
    background-image: none !important;
    color: rgb(0, 0, 0) !important;
    opacity: 0.5;
}

/*
a {
    text-decoration: none;
}*/


@import url('https://rsms.me/inter/inter-ui.css');
::selection {
    background: #2D2F36;
}
::-webkit-selection {
    background: #2D2F36;
}
::-moz-selection {
    background: #2D2F36;
}
body {

    font-family: 'Inter UI', sans-serif;

}
.page {
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
    /*height: 320px;*/
    position: absolute;
    place-content: center;
    /*width: calc(100% - 40px);*/
    width: calc(100% - 16px);
}
@media (max-width: 767px) {
    .page {
        height: auto;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}
.container {
    display: flex;
    height: 320px;
    margin: 0 auto;
    width: 640px;
}
@media (max-width: 767px) {
    .container {
        flex-direction: column;
        height: 580px;
        width: 320px;
    }
}
.left {
    /*background: white;*/
    height: calc(100% - 40px);
    top: 20px;
    position: relative;
    width: 50%;
    text-align: center;
}
@media (max-width: 767px) {
    .left {
        height: 100%;
        left: 20px;
        width: calc(100% - 40px);
        max-height: 260px;
    }
    #logo {
        width: 100px;
        height: 100px;
    }
}
.login {
    font-size: 50px;
    font-weight: 900;
    /*margin: 50px 40px 40px;*/
    margin: 0px 40px 0px 40px;
}
.eula {
    color: #999;
    font-size: 18px;
    /*line-height: 1.5;*/
    /*margin: 40px;*/
    margin-top:10px;
    margin-left:40px;
    margin-right:40px;
    margin-bottom:10px;
}
.eula_top {
    color: #999;
    font-size: 18px;
    line-height: 1.5;
    /*margin: 40px;*/
    margin-bottom:10px;
    margin-left:40px;
    margin-right:40px;
    margin-top:20px;
}
.right {
    background: #474A59;
    box-shadow: 0px 0px 40px 16px rgba(0,0,0,0.22);
    color: #F1F1F2;
    position: relative;
    width: 50%;
}
@media (max-width: 767px) {
    .right {
        flex-shrink: 0;
        height: 100%;
        width: 100%;
        max-height: 300px;
    }

    .eula {
        margin: 20px;
    }
}
.right .form {
    margin: 30px 40px;
    position: absolute;
}
.right label {
    color:  #f2f2f2;
    display: block;
    font-size: 14px;
    height: 16px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.right input {
    background: transparent;
    border: 0;
    color: #f2f2f2;
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    outline: none !important;
    width: 100%;
    padding-left: 5px;
}
.right input::-moz-focus-inner {
    border: 0;
}
#submit {
    color: #f2f2f2;
    margin-top: 30px;
    transition: color 300ms;
}
#submit:focus {
    color: #c2c2c5;
}
#submit:active {
    color: #f2f2f2;
}

#submit {
    cursor:pointer;
    letter-spacing: 2px;
}

#register {
    color: #f2f2f2;
    margin-top: 20px;
    transition: color 300ms;
    font-size: 16px;
}
#register:focus {
    color: #c2c2c5;
}
#register:active {
    color: #f2f2f2;
}

#register {
    cursor:pointer;
    letter-spacing: 2px;
}
@media (max-width: 767px) {
    #submit {
        margin-top: 25px;
    }
    #register {
        /*margin-top: 15px;*/
    }
}