.main-container {
  background: #ffffff;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}
.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  height: 5.25rem;
}
.container {
  outline: 1px solid var(--main-color-light);
  border-radius: 24px;
  max-width: 51.25em;
  margin-top: 1.875em;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
h2 {
  display: block;
  text-align: center;
  color: var(--main-color);
  font-style: bold;
  font-size: 1.75em;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.form-custom {
  width: 100%;
}
.form-group {
  margin: 15px 0;
}
.input-custom {
  width: 100%;
  border: none;
  border-radius: 0%;
  box-shadow: none;
  box-shadow: none;
  padding-left: 0px;
  color: var(--main-color-light);
  border-bottom: 1px solid var(--main-color-light);
}
.input-custom:focus {
  border-bottom: none;
  box-shadow: none;
}
.label-custom {
  color: var(--main-color-light);
}
.eye {
  border-bottom: 1px solid var(--main-color-light);
}

DIV.selected:focus-within .label-custom {
  color: var(--secondary-color-dark);
  box-shadow: none;
}
DIV.selected:focus-within .input-custom {
  border-bottom: 1px solid var(--secondary-color-dark);
  box-shadow: none;
}
DIV.selected:focus-within .input-group .eye {
  border-bottom: 1px solid var(--secondary-color-dark);
  box-shadow: none;
}
.input-group {
  display: flex;
}
.btn-modal {
  background: var(--tertiary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  max-width: 100%;
  outline: none;
  font-family: var(--font-family);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 11px;
}
.btn-modal:hover {
  background: var(--tertiary-color-light);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  max-width: 100%;
}
.btn-modal:focus,
.btn-modal:active,
.btn-modal:active:focus {
  outline: none;
  color: #ffffff;
}
.btn-custom {
  background: var(--tertiary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  max-width: 100%;
  min-height: 3em;
  outline: none;
  font-family: var(--font-family);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.btn-custom:hover {
  background: var(--tertiary-color-light);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  max-width: 100%;
}
.btn-custom:focus,
.btn-custom:active,
.btn-custom:active:focus {
  outline: none;
  color: #ffffff;
}
.formulario__input-error {
  font-size: 0.75rem;
  margin: 0;
  display: none;
}
.formulario__input-error-activo {
  display: block;
  color: #880E4F;
  font-weight: 400;
}
.contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  max-width: 120rem;
  margin: 0 auto;
}

.form-sign-in {
  width: 100%;
  margin: 0 auto;
}
.form-control-custom {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
}
.footer_center {
  margin: 0 auto;
  font: 12px Arial;
  color: #8cd7dc;
  text-align: center;
  padding-top: 13px;
}

/* Estilos propios del login */
.header-login {
  width: 100%;
  height: 120px;
  background: #004055;
  display: inline-block;
}
.logo-container {
  width: 100%;
  height: 63px;
  margin-top: 20px;
}
.logo {
  display: block;
  margin: 0 auto;
}
.form-container {
  max-width: 30rem;
  margin-top: 4rem;
}
.custom-link-color {
  color: var(--tertiary-color); 
  text-decoration: none;
}

.custom-link-color:hover {
  color: var(--tertiary-color-light);
  /* text-decoration: underline; */
}
.error-list {
  width: 100%;
  padding: 0;
  color: red;
  list-style: none;
  margin-top: 5px;
  text-align: center;
}

/* Estilo para input autocompletado */
input:focus-visible {
  outline: none;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: var(--main-color-light) !important;
}
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
select:focus-visible {
  outline: none;
}
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
ul {
  margin-bottom: 0px;
}
hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
  }
  .container {
    outline: none;
    width: 100%;
    margin-top: 0;
    padding: 0em 0.625em;
  }
  h2 {
    font-size: 1.12em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
  }
  .formulario__input-error-activo {
    font-size: 1rem;
  }
  .footer_center {
    padding-top: 7px;
  }
  .group-form:nth-child(even) {
    margin-top: 15px;
  }
}
