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

/*------< Tags >-----*/
.loader_vi {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position:fixed;
  margin-left:auto;
  margin-right:auto;
  margin-top:auto;
  margin-bottom:auto;
  
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
input[type=text], input[type=password], input[type=email]{
  width: 100%;
  /*padding: 12px 20px;*/
  margin: 8px 0;
  /*display: inline-block;*/
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
div{
  vertical-align: middle;
  margin-top: auto;
  margin-bottom: auto;
  
}


/*------< Classes >-----*/

.container_base{
  width: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0px;
  display: inline;
  background-color: rgba(0, 195, 255, 0.5);
}
.container_form{
  width:50%;
}
.warning{
	background-color:rgba(255,0,0,0.5);
	border-bottom-color:rgba(255,0,0,0.7);
}
.txtlogin{
	width:50%;
}

/*-----< ID >-----*/
#base{
  width: 100%;
}

/*--------< Media>---------*/
  @media screen and (max-width:400px) {
	.txtlogin{
		width:100%;
	}
  }
