html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}







/* bloque aceptar cookies */
#cookieConsent {
    z-index: 2000; /* cuanto mas alto, mas primer plano (meto 2000 pq el footer tiene 1030) */
    background-color: #eee;
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin: 0px;
    padding: 60px;
    border: none;
    border-top: 1px solid #ddd;
    border-radius: 0px;
    width: 100%;
    min-width: 100%;
    text-align: center;
    box-shadow: 0px -3px 5px #ddd;
}
    #cookieConsent a {
        margin: 0 30px;
    }
    #cookieConsent button {
        margin-left: 30px;
    }



/*
 Source - https://stackoverflow.com/a/67945081
 Posted by Yinqiu, modified by community. See post 'Timeline' for change history
 Retrieved 2026-02-01, License - CC BY-SA 4.0
*/
.required:after {
    content: "*";
    font-weight: bold;
    color: red;
    margin:0px 5px;
}



h2{
    border-bottom: 1px solid #bbb;
    margin-bottom:30px;
    padding-bottom:10px;
}



/* ojo para visualizar contraseņas. (en login, confirmEmail, changePassword...) */
.password-toggle-icon i {
    color: black !important;
    cursor: pointer;
    /*color: var(--color-main) !important;*/
}

    .password-toggle-icon i:hover {
        color: black !important;
    }