body {  
    background-color: #03293e;     
    font-family: Arial, Helvetica, sans-serif;  
    color: white; 
    font-size: 14px; 
    background: url('../img/bg.jpg') ;  
    background-repeat: repeat-x;  

} 

#dark {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 500;
}

#loading {
    margin: 0 auto;
    margin-top: 21% ;
    text-align:center;
    font-size: 30px;
    z-index: 1000;

}

#kontejner {
        margin: 0 auto;             
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
     
#header{
width: 100%;
height: 4%;
background-color: rgba(0,0,0,0.5);
border-bottom: medium solid black;
}

#name{
padding: 7px;
font-size: 12px; 
font-weight: bold;
}

#user {
float: right;
font-size: 10px;
}

#autentizace {
margin: 0px auto;
margin-top: 3%;
width: 60%;
background-color: rgba(0,0,100,0.5);
 border-style: dotted;
 border-width: thin;
 border-color: rgb(100,150,255);
 box-shadow: 1px 1px 4px 2px #000000;
}


#pass {
margin: 0 auto;
padding-left: 18%;
width: 85%;
}
.pass_input {
width: 5%;
height: 10%;
border-style: double;
 border-width: thin;
 border-color: rgb(0,0,0);
  background: rgba(255, 255, 255, 0.7);
 padding-left: 3%; 
  font-size: 20px;
  text-transform: uppercase;
   font-weight: bold; 

}


.pass_submit {
margin: 0px auto;
margin: 5%;
margin-left: 26%;
border-style: double;
 border-width: thin;
 border-color: rgba(100,150,255, 0.5);
 background: rgba(0,0, 0, 0.5);
 color:white;
 padding: 1%; 
  font-size: 18px;
  text-transform: uppercase;
   font-weight: bold; 
   cursor: pointer;
   
}

  #pass_text {
  font-size: 25px;
  color: red;
  font-weight: bold;
  padding: 2%;
    position: fixed;
    top: 24%;
   left: 25%;
    background: rgba(0, 0, 0, 0.5);
    border-style: double;
 border-width: thin;
 border-color: rgba(255, 0, 0, 0.8);
 box-shadow:6px 6px 8px 6px #000000;
    z-index: 200; 
}  

#document {
margin: 0px auto;
margin-top: 3%;
width: 80%;
background-color: rgba(0,0,100,0.5);
 border-style: dotted;
 border-width: thin;
 border-color: rgb(100,150,255);
 box-shadow: 1px 1px 4px 2px #000000;
}

#caption {
width: 98%;
padding: 1%;
border-bottom: thin dotted rgba(100,150,255, 0.5);
line-height: 170%;

}

#content {
width: 95%;
margin: 2%;
}
 
 #logo {
	background: url('../img/logo.png'); 
  margin: 0px auto;
   margin-top: 2%;
  width: 450px;
  height: 450px;
  opacity: .3;
	-webkit-animation: rotate 15s infinite linear;
  -moz-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}

 #logo_male {
	background: url('../img/logo_male.png'); 
  float:right;
  width: 80px;
  height: 80px;
  opacity: .6;
	-webkit-animation: rotate 15s infinite linear;
  -moz-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}

@-webkit-keyframes rotate {
0% {
   -webkit-transform: rotateY(360deg);
  
  }
30% {
      -webkit-transform: rotateY(0);
  }
100% {
    -webkit-transform: rotateY(0);
  }  
  

} 

@-moz-keyframes rotate {
0% {
   -moz-transform: rotateY(360deg);
  
  }
30% {
      -moz-transform: rotateY(0);
  }
100% {
    -moz-transform: rotateY(0);
  }  

} 

@keyframes rotate {
0% {
   transform: rotateY(360deg);
  
  }
30% {
   transform: rotateY(0);
  }
100% {
  transform: rotateY(0);
  }  

}     