@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body {
	width: 100wh;
	height: 100vh;
	color: #fff;
	background: linear-gradient(-60deg, #26437F, #122F6B, #0041CC);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
	font-family: 'Open Sans', sans-serif;
	padding-top: 150px;
}

.texto-info{
	font-size: 0.9em;
}

p.hidden{
	display: none;
}

input::placeholder {
    color: rgb(200,200,200);
    font-size:10pt;
    opacity: 1; /* Firefox */
}

input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: rgb(200,200,200);
   font-size:10pt;
}

input::-ms-input-placeholder { /* Microsoft Edge */
   color: rgb(200,200,200);
   font-size:10pt;
}

input.flat-input{
	background-color: rgba(0,0,0,0.3);
	color: rgb(255,255,255,0.9);
	height:45px;
	width: 100%;
	border-radius: 1px;
	border: 2px solid #122F6B;
    padding: 20px; 
}

input.flat-input:focus{
  background-color: rgba(0,0,0,0.2);
  color: rgba(255,255,255);
  border: 2px solid #fff;
}
/*
.buttonisk{
	background-color: #78B209;
	border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    padding: 12px 20px; 
}
*/

a{
	color:white;
	text-decoration: none;
	font-size: 0.9em;
}

a:hover{
	color:white;
	text-decoration: none;
}

.buttonisk{
	border-radius: 4px;
  background-color: #FFB200;
  border: none;
  color: #0033A0;
  font-weight: bolder;
  text-align: center;
  padding: 12px; 
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  width: 150px;
}

.buttonisk:hover{
	background-color: #B27C00;
}

.buttonisk span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.buttonisk span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.buttonisk:hover span {
  padding-right: 25px;
}

.buttonisk:hover span:after {
  opacity: 1;
  right: 0;
}

nav{
	font-size:0.8em;
}

@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}