
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Faustina:400,600,700');

#mesagge {
  margin: 0;
  padding: 20px 0;
  font-family: 'Titillium Web', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

#mesagge p {
  font-size: 18px;
  display: inline-block;
  vertical-align: top;
  width: 94%;
  line-height: 1.4;
}

#mesagge i {
  font-size: 40px;
  width: 5%;
  line-height: 1;
}

@media (max-width: 991px) and (min-width: 768px) {
  #mesagge i {
    width: 8%;
  }
  #mesagge p {
    width: 90%;
    vertical-align: top;
  }
}

@media (max-width: 767px) {
  #mesagge i {
    text-align: center !important;
    margin-bottom: 15px;
    display: block;
  }
  #mesagge p {
    text-align: center !important;
    width: 100%;
  }
}

/******COLORES******/

/*confirmacion - verde */
.info-confirm {
  background-color: #DFF0D8;
  color: #356635;
}
/*informacion - azul*/
.info-normal {
  background-color: #D9EDF7;
  color: #3A87AD;
}
/*advertencia - amarillo*/
.info-warning {
  background-color: #FCF8E3;
  color: #C09853;
}
/*error - rojo*/
.info-error {
  background-color: #F2DEDE;
  color: #B94A48;
}


/**************************** 
 * Estilos login 2025 
 *****************************/

.login-box-header {
  padding-top: 50px;
  text-align: center;
  width: 100%;
}

.login-box-header strong,
.login-box-header b {
  font-weight: 600;
}

.login-box-header img {
  height: auto;
  width: auto;
  padding-bottom: 20px;
  position: relative;
}

.login-box-header__text {
  font-family: 'Titillium Web', sans-serif;
  color: #232272;
  line-height: 1.5;
  text-align: center;
}

.login-box-header__text__title {
  font-size: 28px;
  margin: 0;
}

.login-box-wrapper {
  padding-bottom: 64px;
}

.login-box-wrapper .control-back button {
  display: inline-flex;
  justify-content: center;
  color: #49494D;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  background: none;
  border: none;
  text-decoration: underline;
}

.login-box-wrapper .control-back button:hover {
  color: #3B0064;
}

.login-box-wrapper .control-back img {
  height: 20px;
}

.login-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.login-content__box {
  width: 40%;
  height: auto;
  padding: 32px 60px;
  gap: 12px;
  border-radius: 12px;
  box-shadow: 0px 4px 20px 0px rgba(36, 36, 38, 0.10);
  background-color: #fff;
}

.login-content__box form .form__input-welcome {
  font-weight: 600;
  line-height: 1.2;
}

.login-content__box form .form__input-welcome .username {
  font-size: 20px;
}

.login-content__box .links a {
  font-weight: 600;
  text-decoration: underline!important;
}

.login-content__box .links a:hover {
  color: #3B0064!important;
}

.login-content__box .form__check {
  position: relative;
}

.login-content__box .form__check input {
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid#692A92;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  padding-left: 1.5rem;
}
.login-content__box .form__check input:focus {
  border: solid 1px #692A92;
  outline: none;
}
.login-content__box .form__check label {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.login-content__box .form__check input:checked::after {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  z-index: 2;
  border-radius: 4px;
  background-color: #692A92;
  background-image: url("check-light.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}


.login-content__text {
  color: #49494D;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  padding: 20px 40px;
  width: 60%;
}

.login-content__text__title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.login-content__text span.hl {
  background-color: #F8D648;
  color: #49494D;
  border-radius: 5px;
  padding: 2px 4px;
}

.login-content__text hr {
  border-top: 1px solid #CECED9;
}

ul.login-content__text__list {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 0;
}

ul.login-content__text__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.login-content__text__logo-img {
  display: block;
  margin: 0 auto;
}

.login-content__text__info {
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .login-box-header {
    padding-top: 20px;
  }
  
  .login-box-header__text__title {
    font-size: 20px;
  }
  
  .login-box-wrapper {
    padding-bottom: 20px;
  }
  
  .login-content {
    flex-direction: column;
  }
  
  .login-content__text {
    padding: 20px;
  }
  
  .login-content__box,
  .login-content__text {
    width: 100%;
  }
}