/* COLORS:
    RED: rgba(229, 37, 32, 1)
    Gray: #95989E;
    White: #ffffff
    Black: rgba(0, 0, 0, 1)
*/
body{
    background: url("../img/background.jpg");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #393939;
    overflow: hidden;
    font-size:0.9vw;
    padding: 0;
    margin: 0;
    min-width: 1280px;
    font-family: 'Bell MT';
}
#hideAll{
    position: fixed;
    left: 0px; 
    right: 0px; 
    top: 0px; 
    bottom: 0px; 
    background-color: rgba(0, 0, 0, 1);
    z-index: 999999999;
    min-width: 1280px;
    min-height: 768px;
}
#hideAll #sloading{
     position: absolute;
     width: 10vw;
     height: 10vh;
     top: 45vh;
     left: 45vw;
     z-index: 9999999999;
}
#hideAll #sloading img{
     width: 100%;
}
#container{
    width: 30vw;
    min-width: 384px;
    height: 70vh;
    margin: 15vh auto 0 auto;
    background-color: rgba(8, 8, 8, 0.8);
    overflow-y: auto;
    color: white;
    box-shadow: 0 0 10px rgba(229, 37, 32, 1);
    border-radius: 10px;
    padding: 1%;
}
#logo img{
    width: 60%;
    margin-left: 20%;
}
#container h1{
    text-align: center;
    box-shadow: 0 0 2px rgba(255, 255, 255, 1);
}
#container h2{
    color: rgba(229, 37, 32, 1);
}
#container p{
    color: #95989E;
    text-align: justify;
}
.input{
    outline: none;
    width: 96%;
    padding: 0.5vw;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: rgba(229, 37, 32, 1);
    margin-top: 1%;
    font-size: 1vw;
    border: 1px solid rgba(0, 0, 0, 0.7);
}
.input:focus{
    border: 1px solid rgba(229, 37, 32, 1);
}
.button{
    outline: none;
    width: 100%;
    padding: 0.5vw;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: rgba(229, 37, 32, 1);
    margin-top: 1%;
    font-size: 1vw;
    border: 1px solid rgba(229, 37, 32, 1);
    cursor: pointer;
}
.button:hover{
    background-color: rgba(0, 0, 0, 1);
}
.holder{
    text-align: center;
}
.link{
    text-decoration: none;
    color: rgba(229, 37, 32, 1);
    font-size: 1vw;
}
.link:hover{
    text-decoration: underline rgba(229, 37, 32, 1);
}
#registracio{
    display: none;
}
#elfelejtett{
    display: none;
}
#szabalyok{
    display: none;
}
#cookies{
    display: none;
    padding-bottom: 2%;
}
label{
    font-size: 0.9vw;
}
#loading{
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}
#loading img{  
    width: 20%;
}
@media only screen and (max-width: 1280px) {
    body {
      font-size: 0.7em;
    }
    .link{
        font-size: 1.1em;
    }
    .input{     
        font-size: 1.1em;
        padding: 0.6em;
    }
    .button{
        font-size: 1.1em;
        padding: 0.6em;
    }
    label{
        font-size: 1.1em;
    }
}