:root {
  --bg-color: #e5ebff;
  --bg-color-light: #e5ebff;
  --text-color-hover: #4c5656;
  --box-shadow-color: rgb(33 34 36 / 48%);
  --border-color: #dee2e7;
}

body {
  /*background: rgb(242,244,248);*/
  /*background: url('../../img/bg.jpg');*/
  /*background-position: center;*/
  /*  background-size: cover;*/
  /*  background-attachment: fixed;*/
  /* Cambiar el fondo--mateo */
  background-image: url('/img/fondo-girardot.svg'); 
  background-size: cover; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
}

hr {
  display: block;
  margin: 3rem auto;
  width: 60%;
  border: none;
  height: 2px;
  background: linear-gradient(to right, #f4f6f8, #311c87, #f4f6f8);
}

h3,h4,
p {
  margin: 0;
  color: var(--text-color);
}

h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

h3 {
  font-size: 15px;
  margin-bottom: 4px;
}


p {
  font-size: 16px;
}

.section-title {
  text-align: center;
}

.card-label {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px 8px;
}

.card-label h3, .card-label h4 {
  text-align: center;
  margin-bottom: 8px;
}

/* card color fill styles */
.card {
  --text-color: #191c23;
  text-decoration: none;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: 8px;
  line-height: 1.5;
  overflow: hidden;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
}

.card .icon-wrapper {
  background-color: var(--bg-color);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /*padding: 12px;*/
  width: 44px;
  height: 44px;
  background: #e6ebff;
  border-radius: 4px;
  /*margin-bottom: 12px;*/
  box-sizing: border-box;
}

.card .text {
  position: relative;
  z-index: 1000;
}

.card h3,
.card h4,
.card p {
  z-index: 1000;
  transition: color 0.3s ease-out;
}

.card .icon-wrapper {
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #fff;
  border: 2px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.card-active:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
}

.card:hover h3,
.card:hover h4,
.card:hover p {
  color: var(--text-color-hover);
}

.card-active:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0, 0, 0, 0.11),
    0 15px 24px var(--box-shadow-color);
}

.card.no-scale:hover {
  transform: translateZ(0);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
    0 24px 46px var(--box-shadow-color);
}

.card.no-shadow:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: none;
}

.card.no-scale.no-shadow:hover {
  transform: translateZ(0);
  box-shadow: none;
}

.card-body{
  width: 100%;
}

.text-title{
  color: white;
  font-weight: 500;
}

.alc-txt{
    padding: 15px;
    font-size: 50px;
    font-weight: 600;
    color: #25282e;
}
@media (max-width:500px) {
  .alc-txt{
      font-size: 20px;
  }
}

.font-icons{
    font-size: 77px;
    color: #4aba70;
}

.mt-10{
  margin-top:10%;
}

.form-control {
		box-shadow: none;
	}
	.form-control:focus {
		border-color: #4aba70;
	}
	.login-form {
		margin: 0 auto;
	}
  .login-form form {
    color: #434343;
    padding: 30px;
	}
	.login-form h4 {
		text-align: center;
		font-size: 22px;
        margin-bottom: 20px;
	}
    .login-form .avatar {
        color: #fff;
		margin: 0 auto 30px;
        text-align: center;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		z-index: 9;
		background: #4aba70;
		padding: 15px;
		box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	}
    .login-form .avatar i {
        font-size: 62px;
    }
    .login-form .form-group {
        margin-bottom: 20px;
    }
	.login-form .form-control, .login-form .btn {
		min-height: 40px;
		border-radius: 2px;
        transition: all 0.5s;
	}
	.login-form .close {
        position: absolute;
		top: 15px;
		right: 15px;
	}
	.login-form .btn {
		background: #4aba70;
		border: none;
		line-height: normal;
	}
	.login-form .btn:hover, .login-form .btn:focus {
		background: #42ae68;
	}
    .login-form .checkbox-inline {
        float: left;
    }
    .login-form input[type="checkbox"] {
        margin-top: 2px;
    }
    .login-form .forgot-link {
        float: right;
    }
    .login-form .small {
        font-size: 13px;
    }
    .login-form a {
        color: #4aba70;
    }
