@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
  background: #ffffff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body ::-webkit-input-placeholder {
  /* WebKit browsers */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}
body :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}
.wrapper {
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 260px;
  margin-left: -150px;
  margin-top: -130px;
  overflow: hidden;
  border-radius: 5px;
  /*box-shadow: 0 25px 35px rgba(0,0,0,0.75);*/
}
.container {
  padding: 20px;
  text-align: center;
}
.container h1 {
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 20px;
}
form {
  padding: 0;
  position: relative;
  z-index: 2;
}
form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  width: 250px;
  border-radius: 3px;
  padding: 10px 15px;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
  font-size: 18px;
  color: white;
  font-weight: 300;
}
form input:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
form input:focus {
  background-color: white;
  color: #000000;
}
form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  background-color: white;
  border: 0;
  padding: 10px 15px;
  color: #000000;
  border-radius: 3px;
  width: 250px;
  cursor: pointer;
  font-size: 18px;
}
form button:hover {
  background-color: #f5f7f9;
}

.hata {
  background: yellow;
  color: black;
  position:relative;
  width:300px;
  margin:0 auto;
  text-align:center;
  padding:10px;
  border-bottom-left-radius:5px;
  border-bottom-right-radius:5px;
  box-shadow:0 3px 5px rgba(0,0,0,0.25);
}

#perde {
	position: fixed;
	width: 100%;
	height: 100%;
	background: black;
	z-index: 999;
}

.spinner {
	position:absolute;
	width: 40px;
 	height: 40px;
	top: 50%;
	left: 50%;
	margin: -47px 0 0 -20px;
	background-color: #ffce00; /* #ffce00 - #0061af */
	border-radius: 0%;
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0); 
  			   transform: scale(0); }
  100% {
    -webkit-transform: scale(2);
		    transform: scale(2);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}


#login {
	display: none;
}