
#divLoading{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;  
	justify-content: center;
	align-items: center;
	background: rgba(254,254,255, .65);
	z-index: 9999;
	display: none;
}
#divLoading img{
	width: 50px;
	height: 50px;
}

#loading{
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;  
	justify-content: center;
	align-items: center;
	background: rgba(254,254,255, .65);
	z-index: 9999;
	display: none;
	left: 0px;
}

#loading img{
	width: 50px;
	height: 50px;
}

#loading div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#loading h3 {
  color: #333333;
  font-size: 21px;
}

/* body {
	background-image: url(../images/tingo_city.png);
	background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
} */

body {
	background-image: url(../images/tingo_city.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	animation: carousel 15s infinite; /* Apply the carousel animation */
}

@keyframes carousel {
	20% {
		background-image: url(../images/machu.png);
	}
	40% {
		background-image: url(../images/tingo2.png);
	}
	60% {
		background-image: url(../images/tingo3.png);
	}
	80% {
		background-image: url(../images/tingo_city.png);
	}
	100% {
		background-image: url(../images/huanuco.jpg);
	}
}


.login-container {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	padding: 18px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
    .login-container {
        padding: 12px;
    }
}

.logo-img {
	border-radius: 50%;
	border: 2px solid #ccc; /* Agregar un borde al logo */
}

.input-group-button {
	cursor: pointer;
}

@keyframes rotateAnimation {
	0% {
		transform: rotateY(0);
	}
	80% {
		transform: rotateY(0);
	}
	100% {
		transform: rotateY(360deg);
	}
}

.square {
	width: auto;
	height: auto;
	animation: rotateAnimation 6s linear infinite;
	animation-duration: 6s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: normal;
	animation-fill-mode: none;
	animation-play-state: running;
	animation-name: rotateAnimation;
}

