.loginBox{
	position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 380px;
    height: 250px;
    padding: 26px 25px;
    box-sizing: border-box;
	border-color: red;
    background-color: rgb(255, 255, 255) !important;
    opacity: 10;
    border-radius: 10px;
	border-color: red !important;
}

.loginBox button[type="submit"]{

	height:40px;
	color:#ffffff;
	font-size:16px;
	cursor:pointer;
	border-radius:5px;
}

.login-box-msg{
	color:rgb(170, 162, 162);
}

@media(max-width:480px){
	form{
		width:100%;
	}
}

.icon-class-blue {
	color: #007bff;
	/* Color azul para el icono */
  }

  body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	background-image: url('files/fondo.png');
	background-size: cover;
	background-attachment: fixed;
	margin: 0;
  }

  .login-box {
	width: 360px;
	padding: 40px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
  }

  .card-custom {
	border: none;
	box-shadow: none;
	background: none;
  }

  .card-header {
	border-bottom: none;
	text-align: center;
	margin-bottom: 20px;
	background: transparent;
  }

  .card-header p {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 0;
  }

  .card-body {
	padding: 0;
  }

  .input-group {
	position: relative;
	margin-bottom: 15px;
  }

  .form-control {
	height: 45px;
	border-radius: 0;
	border: 1px solid #ced4da;
	box-shadow: none;
	padding-left: 25px;
  }

  .form-control-label {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.2s ease;
	pointer-events: none;
	color: #aaa;
  }

  .input-group:hover .form-control-label,
  .form-control:focus+.form-control-label,
  .form-control:not(:placeholder-shown)+.form-control-label {
	top: -10px;
	left: 10px;
	font-size: 12px;
	color: #007bff;
	background: rgba(255, 255, 255, 0.9);
	padding: 0 5px;
  }

  .input-group-append {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
  }

  .input-group-append .toggle-password {
	color: #aaa;
  }

  .btn-custom {
	height: 45px;
	border-radius: 8px;
	font-weight: bold;
	border: 1px solid #007bff;
	color: #007bff;
	background-color: #fff;
	position: relative;
	overflow: hidden;
  }

  .btn-custom:hover {
	background-color: #007bff;
	color: #fff;
  }

  .icheck-primary label {
	margin-left: 5px;
  }

  .alert {
	margin-top: 20px;
  }

  .separator {
	margin: 10px 0;
  }

  .btn-custom .loading-dots {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  }

  .btn-custom .loading-dots span {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 2px;
	background: #007bff;
	border-radius: 50%;
	animation: blink 1.4s infinite both;
  }

  .btn-custom .loading-dots span:nth-child(2) {
	animation-delay: 0.2s;
  }

  .btn-custom .loading-dots span:nth-child(3) {
	animation-delay: 0.4s;
  }

  .btn-custom.loading .loading-dots {
	display: flex;
  }

  .btn-custom.loading .btn-text {
	visibility: hidden;
  }

  @keyframes blink {

	0%,
	80%,
	100% {
	  opacity: 0;
	}

	40% {
	  opacity: 1;
	}
  }
	