*, *:before, *:after {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    padding: 3px 0px;
    background-color: #020101;
    font-family: Bree Serif, sans-serif;
    background-image: url("../images/backg.png");
    font-size: 16px;
    color: #ccc;
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
    overflow-x: hidden;
    max-height: 100px;
    cursor: url("../cursor/cursor.cur"), auto;
    -webkit-user-select: none; 
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none; 
}    

footer {
    text-align: center;
    color: #ded6cd;
    font-size: 18px;
    text-shadow: 2px 2px 8px #000;
}

.loader-wrapper {
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0B0A09;
  display:flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 99999;
  margin: 0 auto;
}

.loader {
  background-image: url("http://flgame.xaa.pl/public/images/LoadingFrame.png");
  width: 269px;
  height: 267px;
  -webkit-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

.loader-text1 {
    color: #DB9746;
    margin: 10px auto;
    font-size: 24px;
}

.loader-text2 {
    color: #3E3935;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-admin {
    font-size: 14px;
}

.logo {
    display: block;
    margin: 0 auto;
    height: auto;
    max-width: 100%;
}

.login {
    text-align: center;
    vertical-align: middle;
}

.nPassword {
    text-align: center;
    vertical-align: middle;
}

.noneDiv {
    display: none;
} 

textarea {
 width: 300px;
 height: 80px;
 resize: none;
}

textarea {
 min-width: 300px;
 max-width: 300px;
 min-height: 80px;
 max-height: 80px;
}

input[type=text].a {
 min-width: 300px;
 max-width: 300px;
}

a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: #349951;
    background-color: #58ff87;
    border: 3px solid #9affb7;
    border-radius: 4px;
} 


