body {
  font-family: "Montserrat", sans-serif;
}

.header-banner {
  background-color: #00619ecc; /* Color de fondo azul */
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Para aplicar la transparencia del fondo */
.header-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/header-back.png"); /* Imagen de fondo */
  background-size: cover;
  background-position: center;
  opacity: 0.6; /* Ajusta la opacidad para la transparencia */
  z-index: 1;
}

.panel-title {
  margin-top: 1.2rem;
  font-weight: bold;
}
.blue-color-background {
  background-color: #3381b1;
}

.blue-font-color {
  color: #3381b1;
}

.panel-heading {
  border-bottom: 1.5px solid #3381b1;
}

#page-marker {
  font-size: 1.1rem;
  color: #3381b1;
}

.mandatory-fields-helper {
  font-weight: bold;
}

.mandatory>i, .asterisk-color{
  color: #7B182C;
}

/* .mandatory::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\2a";
  color: #2199e4;
  margin-left: 0.2rem;
  z-index: 100;
} */

.continue-button {
  background-color: #2199e4;
  padding: 0.5rem 3.5rem;
  color: whitesmoke;
  font-weight: 500;
  cursor: pointer;

  &:hover {
    background-color: #1b7dba;
    color: whitesmoke;
  }
}

.disabled-button {
  background-color: #dedede;
  padding: 0.5rem 3.5rem;
  color: #a0a0a0;
  font-weight: 500;
  cursor: not-allowed;
}

.progress-bar {
  width: 1%;
  background-color: #2199e4;
}

.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after {
  background-color: transparent;
}

label {
  font-size: 0.8rem;
  font-weight: 300;
}

.help-block {
  color: #8a8a8a;
  font-size: 0.7rem;
  line-height: 1.5rem;
}

.form-control {
  background-color: #f4f4f4;
  border-color: #b8b8b8;
}

.input-container input.error,
.select-container select.error {
  border-color: red;
}

.input-container input.success {
  border-color: green;
}

.input-container,
.select-container {
  position: relative;
}

.input-container.error-emoji:after,
.select-container.error-emoji:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;

  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 5%;
  transform: translateY(-50%);
  z-index: 100;
  color: red;

  font-family: "Font Awesome 5 Pro";
  content: "\f06a";
  font-weight: 400;
}

.input-container.success-emoji:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;

  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 5%;
  transform: translateY(-50%);
  z-index: 100;
  color: green;

  font-family: "Font Awesome 5 Pro";
  content: "\f058";
  font-weight: 400;
}

/* Inputs */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.fade-enter {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-enter-active {
  opacity: 1;
  transform: translateX(0);
}

.fade-exit {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-exit-active {
  opacity: 0;
  transform: translateX(-20px);
}

#validate-message-label {
  color: red;
}

#account-information-label {
  font-size: 0.9rem;
}

/* Mobile */

input::placeholder,
select::placeholder {
  font-size: 0.75rem; /* Cambia el tamaño según tus necesidades */
}

#submit-button {
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  input::placeholder,
  select::placeholder {
    font-size: 1rem; /* Cambia el tamaño según tus necesidades */
  }

  #submit-button {
    font-size: 1rem;
  }
}
