/* here you can put your own css to customize and override the theme */
.pregunta-error {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5;
}

.pregunta-error-msg {
    color: #dc3545;
    font-weight: 600;
    margin-top: 6px;
    display: block;
}


.buttonz {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border: 3px solid #1E88E5; /* Azul */
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16),
              0 3px 6px rgba(0, 0, 0, 0.1);
  color: #1E88E5; /* Azul */
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.buttonz:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #1E88E5; /* Azul */
  z-index: -1;
}

.buttonz:hover,
.buttonz:focus {
  color: white;
}

.buttonz:hover:before,
.buttonz:focus:before {
  left: 0;
  right: 0;
  opacity: 1;
}

.buttonz:active {
  transform: scale(0.9);
}

/*==================================================================================[ animatedcard ]========*/
/* From Uiverse.io by eslam-hany */ 
.animatecard {
  position: relative;
  width: 400px;
  height:180px;
  background: mediumturquoise;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
}

.animatecard::before,
.animatecard::after {
  text-decoration: none !important;
  color: inherit !important;
  position: absolute;
  content: "";
  width: 20%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  background-color: lightblue;
  transition: all 0.5s;
}

.animatecard::before {
  text-decoration: none  !important;
  color: inherit  !important;
  top:  0;
  right: 0;
  border-radius: 0 15px 0 100%;
}

.animatecard::after {
  text-decoration: none !important;
  color: inherit !important;
  bottom: 0;
  left: 0;
  border-radius: 0 100%  0 15px;
}

.animatecard:hover::before,
.animatecard:hover:after {
  text-decoration: none !important;
  color: inherit !important;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  transition: all 0.5s;
}

.animatecard:hover:after {
  text-decoration: none !important;
  color: inherit !important;
  content: "INGRESAR";
}

/*==============================================================================================================================================;
}

/*========================================================================
  content: "INGRESAR";
}

/*==================================================================================[  ]========*/
.Panel_Centrado {
    display: flex;
    justify-content: center;
}