/* Root / Reset */

:root {
    --mdc-text-button-label-text-color: #f7f7f7;
    --mdc-shape-small: 4px;
    --mdc-theme-body: #182858;
    --mdc-theme-error: #a20323;
    --cas-theme-primary: #182858;
    --cas-theme-button-bg-hover: #1678d8;
    --cas-theme-primary-bg: rgba(21, 62, 80, 0.2);
    --cas-theme-button-bg:#ff9c02;
    --cas-theme-button-bg-lite: #1e78d0;
    --cas-theme-primary-light: #182858;
    --cas-theme-secondary:  #74c163;
    --cas-theme-success: #74C163;
    --cas-theme-danger: #58151c;
    --cas-theme-danger-bg: #f8d7da;
    --cas-theme-warning: #664d03;
    --cas-theme-warning-bg: #fff3cd;
    --cas-theme-border-light: 1px solid rgba(0, 0, 0, .2);
    --mdc-theme-primary: var(--cas-theme-primary, #153e50);
    --mdc-typography-font-family: "Ubuntu", "Open Sans", Roboto, Arial, sans-serif;

    --navbar-width: 256px;
    --navbar-width-min: 80px;
    --navbar-dark-primary: #18283b;
    --navbar-dark-secondary: #2c3e50;
    --navbar-light-primary: #f5f6fa;
    --navbar-light-secondary: #8392a5;
}

body {
    display: flex;
    height: 100vh;
    margin: 0;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--mdc-typography-font-family);
    background: var(--mdc-theme-body);
}

a {
    color: #153e50;
    color: var(--cas-theme-primary, #153e50);
}

a:hover, a:visited, a:active {
    color: #006d85;
    color: var(--cas-theme-primary-light);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 3px;
}

aside, section, main {
    display: block;
}

/* Material */

.mdc-drawer {
    top: 56px;
}

.mdc-drawer-app-content {
    flex: auto;
    overflow: auto;
    position: relative;
}

.main-content {
    display: flex;
}

.mdc-top-app-bar {
    z-index: 7;
}

div#content {
    box-shadow: 1px 1px 3px #888;
}

/* widgets */

.notifications-count {
    position: absolute;
    top: 8px;
    right: 4px;
    background-color: var(--mdc-theme-error, #b00020);
    color: #fff;
    border-radius: 50%;
    padding: 1px 3px;
    font: 11px Verdana;
}

.cas-brand {
    height: 48px;
    width: auto;
}

header > nav .cas-brand path.cls-1 {
    fill: white;
}

header > nav .cas-brand .cas-logo {
    height: 100%;
}

.caps-warn {
    display: none;
}

.caps-on {
    order: 3
}

.caps-on DIV SPAN {
    display: block;
}

.caps-on span:before {
    vertical-align: sub;
    content: "\F0027";
    font-size: 24px;
    font: normal normal normal 24px/1 "Material Design Icons";
}

.login-section {
    border-right: 1px solid rgba(0, 0, 0, .2);
    border-right: var(--cas-theme-border-light, 1px solid rgba(0, 0, 0, .2));
    padding: 2rem 2.5rem;
    flex: 1 1 auto;
    /* IE flex fix */
}

.login-section:last-child {
    border: none;
}

@media screen and (max-width: 767.99px) {
    .login-section {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        border-bottom: var(--cas-theme-border-light, 1px solid rgba(0, 0, 0, .2));
        max-width: none;
        padding: 0 1.5rem;
    }
}

.log-trace {
    color: whitesmoke;
    font-weight: bold;
}

.log-none, .log-debug {
    color: dodgerblue;
    font-weight: bold;
}

.log-default, .log-notice, .log-info {
    color: limegreen;
    font-weight: bold;
}

.log-warning, .log-alert, .log-warn {
    color: orange;
    font-weight: bold;
}

.log-fatal, .log-emergency, .log-critical, .log-error {
    color: orangered;
    font-weight: bold;
}

.noborder {
    border: 0 none;
    border-style: none;
}

.close {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    text-transform: none;
    text-decoration: none;
}

button.close {
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

form button i.mdi {
    margin-right: 2px;
}

.banner {
    border: 1px solid rgba(0, 0, 0, .2);
    border: var(--cas-theme-border-light, 1px solid rgba(0, 0, 0, .2));
    position: relative;
    padding-left: 10px;
    box-shadow: 1px 1px 3px #888;
    border-radius: .5em;
    padding-top: .5em;
    padding-bottom: .5em;
}

.banner > span {
    vertical-align: top;
}

.banner .banner-message {
    margin: 0.375rem 0;
}

.banner .banner-heading:first-child {
    margin-top: 0;
}

.banner .banner-message:first-child {
    margin-top: 0;
}

.banner .banner-message:last-child {
    margin-bottom: 0;
}

.banner-primary {
    border-color: #153e50;
    border-color: var(--cas-theme-primary, #153e50);
}

.banner-primary .mdi {
    color: #153e50;
    color: var(--cas-theme-primary, #153e50);
}

.banner-danger h1:before,
.banner-danger h2:before,
.banner-danger h3:before,
.banner-danger h4:before,
.banner-danger h5:before {
    content: "\F0027";
    font-size: 24px;
    font: normal normal normal 24px/1 "Material Design Icons";
}

.banner-danger {
    border-color: #b00020;
    border-color: var(--cas-theme-danger, #b00020);
    color: var(--cas-theme-danger, #58151c);
    background-color: var(--cas-theme-danger-bg, #f8d7da);
}

.banner-danger .mdi {
    color: #b00020;
    color: var(--cas-theme-danger, #b00020);
}

.banner-warning {
    border-color: #e6a210;
    border-color: var(--cas-theme-warning, #e6a210);
    color: #664d03;
    color: var(--cas-theme-warning, #664d03);
    background-color: var(--cas-theme-warning-bg, #fff3cd);
}

.banner-warning .mdi {
    color: #664d03;
    color: var(--cas-theme-warning, #664d03);
}

.banner-success h1:before,
.banner-success h2:before,
.banner-success h3:before,
.banner-success h4:before,
.banner-success h5:before {
    content: "\F012D";
    font-size: 24px;
    font: normal normal normal 24px/1 "Material Design Icons";
}

.banner-success {
    border-color: var(--cas-theme-success);
    color: var(--cas-theme-primary, #153e50);
    background-color: #adf096;
}

.banner-info h1:before,
.banner-info h2:before,
.banner-info h3:before,
.banner-info h4:before,
.banner-info h5:before {
    content: "\F1C67";
    font-size: 24px;
    font: normal normal normal 24px/1 "Material Design Icons";
}

.banner-info {
    border-color: var(--cas-theme-primary);
    color: black;
    background-color: #9fceff;
}

.banner-dismissible {
    padding-right: 4rem;
}

.banner-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.05rem 0.05rem;
    color: inherit;
}

.login-provider-item {
    list-style: none;
}

.login-provider-item .mdc-button .mdi {
    margin-right: 0.375rem;
}

@media screen and (max-width: 767.99px) {
    .logout-banner {
        width: 100%;
    }
}

.cas-footer {
    background-color: var(--mdc-theme-primary, #6200ee);
    color: whitesmoke;
}

.cas-footer a {
    color: deepskyblue;
}

.cas-footer > * {
    margin-right: 0.25rem;
    display: inline-block;
}

.cas-footer > *:last-child {
    margin: 0;
}

.cas-notification-dialog .mdc-dialog__content > .cas-notification-message:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    border-bottom: var(--cas-theme-border-light, 1px solid rgba(0, 0, 0, .2));
}

.cas-card {
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: lightskyblue;
    flex-direction: column;
    flex-grow: 1;
    grid-column-end: span 6 !important;
}

.mdc-dialog__title::before {
    display: none;
}

.mdi {
    content: "";
    /*vertical-align: baseline;*/
}

#casAccountProfile .mdi {
    vertical-align: baseline;
}

#dashboardTabBar .mdi, .attribute-tab .mdi {
    vertical-align: sub;
    /*padding-right: 1px;*/
}

.ace-editor {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: "Monaco", "Menlo", "Ubuntu Mono", "Droid Sans Mono", "Consolas", monospace !important;
}

.ace-absolute {
    position: absolute;
}

.ace-relative {
    position: relative;
    border-radius: 10px;
}

.mdi:before {
    font-size: 20px;
}

/* custom components */

.custom-select {
    display: inline-block;
    min-width: 80%;
    height: 56px;
    padding: .375rem 1.75rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.87);
    vertical-align: middle;
    background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
}

/* utilities */

.pl-2 {
    padding-left: 0.8rem;
}

.mr-2 {
    margin-right: 2px !important;
}

.mr-4 {
    margin-right: 4px !important;
}

.mr-8 {
    margin-right: 8px !important;
}

.mr-12 {
    margin-right: 12px !important;
}

.pr-2 {
    padding-right: 0.8rem;
}

.pr-4 {
    padding-right: 1.2rem;
}

.pb-2 {
    padding-bottom: 0.8rem;
}

.bg-primary {
    background-color: rgba(21, 62, 80, 0.2);
    background-color: var(--cas-theme-primary-bg, rgba(21, 62, 80, 0.2));
}

.border-bottom {
    border-color: #153e50;
    border-bottom: 1px solid var(--cas-theme-primary, #153e50);
}


.strong {
    font-weight: bold;
}

.hide {
    display: none;
}

.text-warning {
    color: #664d03;
    color: var(--cas-theme-warning, #664d03);
}

.text-danger {
    color: #b00020;
    color: var(--cas-theme-danger, #b00020);
}

.text-secondary {
    color: var(--cas-theme-secondary);
}

.text-success {
    color: var(--cas-theme-success);
}

.progress-bar-danger .mdc-linear-progress__bar-inner {
    border-color: #b00020;
    border-color: var(--cas-theme-danger, #b00020);
}

.progress-bar-warning .mdc-linear-progress__bar-inner {
    border-color: #664d03;
    border-color: var(--cas-theme-warning, #664d03);
}

.progress-bar-success .mdc-linear-progress__bar-inner {
    border-color: var(--cas-theme-success);
}

.word-break-all {
    word-break: break-all;
}

.mdc-text-field {
    width: 100%;
}

.mdc-text-field > .mdc-text-field__input, .mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) > .mdc-text-field__input {
    border-color: #153e50;
    border: 1px solid var(--cas-theme-primary, #153e50);
    border-radius: 4px;
}

.mdc-input-group .mdc-input-group-field .mdc-notched-outline__trailing {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.mdc-input-group .mdc-input-group-append {
    order: 2;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.mdc-input-group .mdc-input-group-prepend, .mdc-input-group .mdc-input-group-append {
    height: 56px;
}

.mdc-input-group .mdc-input-group-prepend {
    order: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.mdc-input-group .mdc-input-group-field.mdc-input-group-field-prepend .mdc-text-field > .mdc-text-field__input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.mdc-input-group .mdc-input-group-field.mdc-input-group-field-append .mdc-text-field > .mdc-text-field__input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.text-danger, .mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-line .mdc-text-field-helper-text.text-danger {
    color: var(--cas-theme-danger, #58151c);
}

.mdc-text-field__icon.text-danger {
    color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
    color: #153e50;
    color: var(--cas-theme-primary, #153e50);
}

.button-cancel {
    background-color: var(--mdc-theme-error, #a20323) !important;
}

span button.toolbar {
    background-color: var(--cas-theme-button-bg-lite, dodgerblue) !important;
}

.mdc-button--outline:not(:disabled, .reveal-password) {
    background-color: var(--cas-theme-secondary, #018077);
    border-radius: 8px 8px 8px 8px;
    filter: drop-shadow(2px 2px 4px #018077);
}

.mdc-button--raised:not(:disabled, .reveal-password) {
    margin-right: 4px;
    border-radius: 9px 9px 9px 9px;
    filter: drop-shadow(2px 2px 4px #023b53);
    background-color: #ff9c02;
    cursor: default;
}

.mdc-button--raised:not(:disabled, .reveal-password):hover {
    background-color: var(--cas-theme-button-bg-hover, dodgerblue);
    transform: scale(1.08);
    box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.mdc-button--lg {
    width: 180px;
    height: 48px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.text-center {
    text-align: center;
}

.pad-0 {
    padding-right: 0;
    padding-left: 0;
}

.w-66 {
    width: 66%;
}

.w-33 {
    width: 33%;
}

.w-10 {
    width: 10% !important;
}

.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-750px {
    height: 750px;
}

.h-450px {
    height: 450px;
}

.h-350px {
    height: 350px;
}

.h-250px {
    height: 250px;
}

.h-150px {
    height: 150px;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.mw-100 {
    max-width: 100% !important;
}

.mw-75 {
    max-width: 75% !important;
}

.mw-50 {
    max-width: 50% !important;
}

.mh-100 {
    max-height: 100%;
}

.min-width-24x {
    min-width: 24px !important;
    width: 24px;
    max-height: 24px !important;
}

.min-width-32x {
    min-width: 32px !important;
    width: 32px;
    max-height: 32px !important;
}

.min-width-48x {
    min-width: 48px !important;
    width: 24px;
}

.min-vw-100 {
    min-width: 100vw;
}

.min-vh-100 {
    min-height: 100vh;
}

.min-height-60 {
    min-height: 60%;
}

.vw-100 {
    width: 100vw;
}

.vh-100 {
    height: 100vh;
}

.mw-50 {
    max-width: 50%;
}

.mw-25 {
    max-width: 25%;
}

.mw-20 {
    max-width: 20%;
}

.mt-0 {
    margin-top: 0;
}

.mt-2 {
    margin-top: 2px;
}

.mt-4 {
    margin-top: 4px;
}

.mt-auto {
    margin-top: auto;
}

.ml-2 {
    margin-left: 0.5rem;
}
.border-rounded {
    border-color: #153e50;
    border: 1px solid var(--cas-theme-primary, #153e50);
    border-radius: 8px;
}

.border-bottom {
    border-color: #153e50;
    border-bottom: 1px solid var(--cas-theme-primary, #153e50);
}

select.palantir {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border-color: var(--cas-theme-primary);
    font-family: monospace;
    font-size: 16px;
    padding-left: 7px;
    font-weight: bold;
}

.elevation-surface {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    min-height: 100px;
    min-width: 200px;
    margin: 15px;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    background-color: #e3e9ec;
}

.swal-overlay {
    background-color: rgba(17, 67, 119, 0.95);
}

@media all and (min-width: 768px) {
    .w-md-50 {
        width: 50%;
    }

    .w-md-66 {
        width: 66%;
    }
}

@media all and (min-width: 992px) {
    .w-lg-50 {
        width: 50%;
    }

    .w-lg-66 {
        width: 66%;
    }
}

@media all and (max-width: 767.99px) {
    .w-md-50 {
        width: 100%;
    }

    .w-md-66 {
        width: 100%;
    }
}

@media all and (max-width: 991.99px) {
    .w-lg-50 {
        width: 100%;
    }

    .w-lg-66 {
        width: 100%;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*, ::after, ::before {
    box-sizing: border-box;
}

.text-justify {
    text-align: justify;
}

.text-wrap {
    white-space: normal;
}

.text-wrap-pretty {
    text-wrap: pretty;
}

#servicedesc .mdi {
    vertical-align: sub;
}

.dataTables_wrapper {
    margin-left: 5px;
    margin-top: 5px;
    margin-right: 5px;
}

#heroimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/** jQuery UI **/

.swal2-confirm {
    background-color: var(--cas-theme-button-bg);
}

.ui-selectmenu-open {
    background: var(--mdc-theme-background);
}

.ui-tooltip {
    background-color: var(--cas-theme-primary) !important;
    color: whitesmoke;
    min-width: 450px !important;
    max-width: 600px;
}

.ui-tabs-active {
    background: var(--cas-theme-primary) !important;
}

.ui-widget, .ui-widget button {
    font-family: var(--mdc-typography-font-family) !important;
    font-size: unset;
}

.ui-widget-content, .ui-widget-header {
    background: unset;
}

.ui-widget-header {
    border: unset;
}

.ui-tabs .ui-tabs-nav li {
    border-bottom: 1px solid var(--cas-theme-button-bg-lite);
    margin-right: 0.07em;
}

/***************************/


#main-content {
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 2px;
}

/* oddly, the auto right and left margins caused the login form to not be centered in IE */

@media all and (min-width: 768px) {
    .login-section {
        flex: 1 1 500px;
    }
}


/* fix for not showing password reveal icon on MSEdge and MSIE */
.pwd::-ms-reveal,
.pwd::-ms-clear {
    display: none;
}

@media (min-width: 1400px) {
    .container-xxl {
        max-width: 95%;
    }
}

/************************************/
body {
    overflow: hidden;
}

.sidebar-navigation {
    border-radius: 5px;
    display: inline-block;
    min-height: 100vh;
    width: 80px;
    background-color: var(--mdc-theme-primary, #6200ee);
    float: left;
}

.sidebar-navigation ul {
    margin: 0;
    padding: 0;
    text-align: center;
    color: white;
    list-style: none;
}

.sidebar-navigation ul li {
    padding: 28px 0;
    cursor: pointer;
    text-align: center;
    transition: all ease-out 120ms;
    border-radius: 10px;
}

.sidebar-navigation ul li i {
    display: block;
    font-size: 24px;
    transition: all ease 450ms;
}

.sidebar-navigation ul li .tooltip {
    display: inline-block;
    position: absolute;
    background-color: #313443;
    padding: 8px 15px;
    border-radius: 3px;
    margin-top: 5px;
    left: 170px;
    opacity: 0;
    visibility: hidden;
    font-size: 13px;
    letter-spacing: 0.5px;
    z-index: 100;
}

.sidebar-navigation ul li .tooltip:before {
    content: "";
    display: block;
    position: absolute;
    left: -4px;
    top: 5px;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: inherit;
}

.sidebar-navigation ul li:hover {
    background-color: deepskyblue;
}

.sidebar-navigation ul li:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.sidebar-navigation ul li.active {
    background-color: steelblue;
}

.sidebar-navigation ul li.active i {
    color: #98D7EC;
}

/** Notyf Options **/
.notyf__toast {
    max-width: 50em !important;
    .notyf__ripple {
        height: 60em;
        width: 60em;
    }
}


/* Add this to the end of your CSS file */

/*
  This targets the body of our new login layout.
  It overrides the default flexbox behavior to center content
  both vertically and horizontally.
*/
body.login-page {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: var(--mdc-theme-body);
    font-family: var(--mdc-typography-font-family);
}





/*
!* 1. Estilos para el cuerpo (body) de la página de login.
   Esto centra el contenedor del formulario en la pantalla. *!
body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--mdc-theme-body); !* Fondo azul oscuro para toda la página *!
    padding: 0;
    margin: 0;
    flex-direction: row;
}

!* 2. Estilos para el contenedor principal del formulario.
   Define el ancho y añade espacio en la parte inferior. *!
body.login-page #main-content {
    margin: 0;
    !* !!! AJUSTE: Añade un margen inferior para crear espacio debajo del formulario.
       Puedes cambiar 10vh a 15vh para más espacio, o 5vh para menos. *!
    margin-bottom: 10vh;

    flex-grow: 0;
    flex-shrink: 0;
    max-width: 500px; !* Ajusta esto para más/menos espacio a los lados *!
    width: 90%;
}

!* 3. Estilos para la "tarjeta" del formulario.
   Mantiene el fondo blanco y la sombra. *!
body.login-page #content .card {
    background-color: #ffffff; !* Fondo blanco para el formulario *!
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),
    0px 1px 1px 0px rgba(0,0,0,0.14),
    0px 1px 3px 0px rgba(0,0,0,0.12); !* Sombra estándar para que destaque *!
}

!* 4. Estilo para el contenedor del logo DENTRO del formulario.
   Aquí es donde colocamos y centramos tu imagen SVG. *!
.login-form-logo-container {
    !* Tu imagen SVG como fondo *!
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='123' fill='none'%3E%3Cpath fill='%23182858' d='M3.86 98H2.25V85.203h1.608V98zm4.069-9.51l.044 1.029c.603-.803 1.374-1.205 2.311-1.205 1.682 0 2.534 1.123 2.558 3.367V98h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.618-.475-1.116-.475-.387 0-.736.13-1.046.387a2.81 2.81 0 00-.738 1.01V98H6.46v-9.51h1.468zm6.943 4.325c0-1.483.27-2.602.809-3.358.539-.762 1.327-1.142 2.364-1.142.967 0 1.702.413 2.206 1.239l.08-1.064h1.405v9.598c0 1.178-.301 2.08-.905 2.707-.604.633-1.444.949-2.522.949-.47 0-.997-.117-1.582-.351-.58-.229-1.017-.513-1.31-.853l.633-1.072c.644.633 1.356.949 2.136.949 1.294 0 1.96-.706 1.995-2.118v-1.24c-.504.745-1.22 1.117-2.145 1.117-.984 0-1.752-.37-2.303-1.108-.55-.744-.838-1.81-.86-3.199v-1.055zm1.556.887c0 1.067.155 1.852.466 2.356.316.498.832.747 1.546.747.774 0 1.354-.396 1.74-1.187v-4.755c-.404-.779-.978-1.169-1.722-1.169-.715 0-1.23.252-1.547.756-.316.498-.477 1.266-.483 2.303v.95zm11.557-3.753a3.786 3.786 0 00-.703-.061c-.797 0-1.353.436-1.67 1.31V98h-1.555v-9.51h1.511l.027.967c.416-.762 1.005-1.142 1.766-1.142.246 0 .451.04.616.123l.008 1.511zm4.782 8.227c-1.184 0-2.092-.352-2.725-1.055-.633-.709-.955-1.746-.967-3.111v-1.152c0-1.418.308-2.528.923-3.33.621-.81 1.485-1.214 2.593-1.214 1.113 0 1.945.355 2.496 1.064.55.709.832 1.813.844 3.313v1.02h-5.309v.22c0 1.02.19 1.76.571 2.223.387.463.94.695 1.662.695.457 0 .858-.085 1.204-.255.351-.176.68-.451.984-.826l.809.984c-.674.95-1.703 1.424-3.085 1.424zm-.176-8.526c-.645 0-1.122.223-1.433.668-.31.44-.486 1.125-.527 2.057h3.744v-.21c-.041-.903-.205-1.548-.492-1.934-.281-.387-.712-.58-1.292-.58zm9.835 5.915c0-.334-.126-.62-.378-.86-.252-.241-.738-.522-1.46-.845-.837-.345-1.429-.641-1.775-.887a2.558 2.558 0 01-.764-.835c-.17-.317-.255-.692-.255-1.125 0-.774.281-1.415.844-1.925.568-.516 1.292-.773 2.17-.773.926 0 1.67.269 2.233.808.563.54.844 1.23.844 2.074h-1.547c0-.428-.144-.79-.43-1.09-.288-.304-.654-.457-1.1-.457-.456 0-.817.12-1.08.36-.258.235-.387.551-.387.95 0 .316.094.571.281.765.193.193.653.448 1.38.764 1.154.451 1.94.894 2.355 1.327.416.428.624.973.624 1.635 0 .826-.284 1.489-.852 1.987-.569.492-1.33.738-2.285.738-.99 0-1.793-.284-2.409-.853-.615-.568-.922-1.289-.922-2.162h1.564c.018.528.179.94.483 1.24.305.298.733.448 1.284.448.515 0 .908-.115 1.178-.343.269-.234.404-.548.404-.94zM50.907 98c-.093-.205-.16-.55-.202-1.037-.55.809-1.254 1.213-2.11 1.213-.86 0-1.535-.24-2.02-.72-.481-.487-.722-1.17-.722-2.049 0-.967.329-1.734.985-2.302.656-.569 1.556-.859 2.698-.87h1.143v-1.011c0-.569-.126-.973-.378-1.213-.252-.24-.636-.36-1.152-.36-.468 0-.85.14-1.142.421-.293.276-.44.627-.44 1.055h-1.555c0-.486.143-.95.43-1.389a2.987 2.987 0 011.16-1.046 3.481 3.481 0 011.627-.377c.972 0 1.71.243 2.214.729.51.48.77 1.184.783 2.11v4.798c.005.733.105 1.368.298 1.907V98h-1.617zm-2.074-1.24c.38 0 .744-.105 1.09-.316a1.95 1.95 0 00.756-.79v-2.268h-.88c-.737.011-1.32.178-1.748.5-.428.317-.642.762-.642 1.337 0 .539.109.931.325 1.177.217.24.583.36 1.099.36zm1.292-12.26h1.969l-2.356 2.584h-1.31l1.697-2.584zm10.688 1.688v2.302h1.432v1.257h-1.432v5.897c0 .375.061.66.184.853.123.193.334.29.633.29.205 0 .413-.035.624-.105L62.236 98a3.396 3.396 0 01-1.08.176c-.616 0-1.085-.22-1.407-.66-.322-.439-.483-1.06-.483-1.863v-5.906h-1.45V88.49h1.45v-2.302h1.547zm8.138 10.977c-.515.674-1.268 1.01-2.259 1.01-.86 0-1.511-.295-1.95-.887-.44-.598-.663-1.465-.669-2.602V88.49h1.547v6.082c0 1.483.445 2.224 1.336 2.224.943 0 1.594-.422 1.951-1.266v-7.04h1.556V98h-1.477l-.035-.835zM78.4 88.49l.044 1.029c.604-.803 1.374-1.205 2.312-1.205 1.681 0 2.534 1.123 2.558 3.367V98h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.619-.475-1.117-.475-.386 0-.735.13-1.045.387a2.81 2.81 0 00-.739 1.01V98h-1.555v-9.51h1.467zm6.926 4.316c0-1.383.334-2.476 1.002-3.279.674-.808 1.562-1.213 2.663-1.213 1.102 0 1.987.393 2.654 1.178.674.785 1.02 1.855 1.038 3.208v1.002c0 1.377-.334 2.467-1.002 3.27-.668.802-1.559 1.204-2.672 1.204-1.102 0-1.986-.39-2.654-1.17-.663-.778-1.005-1.833-1.029-3.163v-1.037zm1.556.896c0 .979.19 1.75.571 2.312.387.556.905.835 1.556.835 1.37 0 2.077-.99 2.118-2.971v-1.072c0-.973-.193-1.74-.58-2.303-.387-.568-.905-.853-1.556-.853-.638 0-1.151.285-1.538.853-.38.562-.571 1.327-.571 2.294v.905zm9.272-5.212l.035.88c.58-.704 1.345-1.056 2.294-1.056 1.061 0 1.802.46 2.224 1.38.598-.92 1.43-1.38 2.496-1.38 1.752 0 2.649 1.093 2.69 3.279V98h-1.547v-6.258c0-.691-.123-1.204-.369-1.538-.247-.34-.663-.51-1.248-.51a1.4 1.4 0 00-1.143.545c-.293.364-.463.826-.51 1.389V98h-1.564v-6.328c-.018-1.319-.554-1.978-1.609-1.978-.785 0-1.338.393-1.66 1.178V98h-1.548v-9.51h1.46zm18.976 5.212c0 1.483-.267 2.599-.8 3.349s-1.307 1.125-2.32 1.125c-1.008 0-1.764-.434-2.268-1.301L109.662 98h-1.415V84.5h1.547v5.036c.51-.814 1.242-1.222 2.197-1.222 1.043 0 1.825.37 2.347 1.108.521.738.785 1.851.791 3.34v.94zm-1.547-.888c0-1.124-.158-1.924-.475-2.399-.31-.48-.817-.72-1.52-.72-.803 0-1.4.433-1.793 1.3v4.526c.387.856.99 1.284 1.81 1.284.704 0 1.208-.246 1.512-.739.305-.492.46-1.256.466-2.294v-.958zm7.462-2.865a3.786 3.786 0 00-.703-.061c-.797 0-1.354.436-1.67 1.31V98h-1.556v-9.51h1.512l.026.967c.416-.762 1.005-1.142 1.767-1.142.246 0 .451.04.615.123l.009 1.511zm4.781 8.227c-1.183 0-2.092-.352-2.724-1.055-.633-.709-.955-1.746-.967-3.111v-1.152c0-1.418.307-2.528.923-3.33.621-.81 1.485-1.214 2.592-1.214 1.114 0 1.946.355 2.497 1.064.55.709.832 1.813.843 3.313v1.02h-5.308v.22c0 1.02.19 1.76.571 2.223.387.463.94.695 1.661.695.457 0 .858-.085 1.204-.255.352-.176.68-.451.985-.826l.808.984c-.674.95-1.702 1.424-3.085 1.424zm-.176-8.526c-.644 0-1.122.223-1.432.668-.311.44-.487 1.125-.528 2.057h3.745v-.21c-.041-.903-.205-1.548-.493-1.934-.281-.387-.712-.58-1.292-.58zm9.018 3.164c0-1.464.272-2.58.817-3.348.551-.768 1.339-1.151 2.365-1.151.908 0 1.617.369 2.127 1.107V84.5h1.555V98h-1.424l-.079-1.02c-.509.797-1.239 1.196-2.188 1.196-.985 0-1.758-.381-2.32-1.143-.557-.767-.841-1.848-.853-3.243v-.976zm1.556.888c0 1.067.158 1.852.474 2.356.317.498.832.747 1.547.747.774 0 1.351-.39 1.732-1.17v-4.798c-.399-.762-.973-1.143-1.723-1.143-.715 0-1.231.252-1.547.756-.316.498-.477 1.266-.483 2.303v.95zm11.1 4.474c-1.183 0-2.092-.352-2.724-1.055-.633-.709-.955-1.746-.967-3.111v-1.152c0-1.418.307-2.528.923-3.33.621-.81 1.485-1.214 2.592-1.214 1.114 0 1.946.355 2.497 1.064.55.709.832 1.813.843 3.313v1.02h-5.308v.22c0 1.02.19 1.76.571 2.223.387.463.94.695 1.661.695.457 0 .859-.085 1.204-.255.352-.176.68-.451.985-.826l.808.984c-.674.95-1.702 1.424-3.085 1.424zm-.176-8.526c-.644 0-1.122.223-1.432.668-.311.44-.486 1.125-.527 2.057h3.744v-.21c-.041-.903-.205-1.548-.493-1.934-.281-.387-.711-.58-1.292-.58zM9.449 106.203v9.097c-.011 1.213-.363 2.162-1.054 2.847-.692.686-1.656 1.029-2.892 1.029-1.266 0-2.232-.334-2.9-1.002-.668-.674-1.008-1.632-1.02-2.874v-9.097h1.6v9.035c0 .862.181 1.506.545 1.934.369.422.96.633 1.775.633.82 0 1.412-.211 1.775-.633.37-.428.554-1.072.554-1.934v-9.035h1.617zm6.882 10.362c0-.334-.126-.621-.378-.861s-.738-.521-1.459-.844c-.838-.345-1.43-.641-1.775-.887a2.561 2.561 0 01-.765-.835c-.17-.317-.255-.692-.255-1.125 0-.774.281-1.415.844-1.925.568-.516 1.292-.774 2.17-.774.927 0 1.67.27 2.233.809.563.539.844 1.231.844 2.074h-1.547c0-.427-.143-.791-.43-1.09-.288-.304-.654-.457-1.1-.457-.456 0-.816.121-1.08.361-.258.234-.387.551-.387.949 0 .316.094.571.281.765.194.193.654.448 1.38.764 1.154.451 1.94.894 2.356 1.327.416.428.624.973.624 1.635 0 .826-.285 1.488-.853 1.987-.568.492-1.33.738-2.285.738-.99 0-1.793-.284-2.408-.853-.615-.568-.923-1.289-.923-2.162h1.564c.018.527.18.941.484 1.239.305.299.732.449 1.283.449.516 0 .908-.115 1.178-.343.27-.235.404-.548.404-.941zm8.438 1.6c-.516.674-1.269 1.011-2.26 1.011-.86 0-1.511-.296-1.95-.888-.44-.598-.663-1.465-.668-2.601v-6.197h1.547v6.082c0 1.483.445 2.224 1.335 2.224.944 0 1.594-.422 1.952-1.266v-7.04h1.555V119h-1.476l-.035-.835zm8.745.835c-.094-.205-.162-.551-.203-1.037-.55.808-1.253 1.213-2.109 1.213-.861 0-1.535-.24-2.021-.721-.48-.486-.721-1.169-.721-2.048 0-.967.328-1.734.984-2.303.657-.568 1.556-.858 2.699-.87h1.142v-1.01c0-.569-.126-.973-.378-1.213-.252-.24-.635-.361-1.151-.361-.469 0-.85.141-1.143.422-.293.276-.44.627-.44 1.055h-1.555c0-.486.144-.949.43-1.389a2.991 2.991 0 011.161-1.046 3.48 3.48 0 011.626-.378c.973 0 1.71.244 2.215.73.51.48.77 1.184.782 2.109v4.799c.006.733.105 1.368.299 1.907V119h-1.617zm-2.075-1.239c.381 0 .745-.106 1.09-.317.346-.211.598-.474.756-.791v-2.267h-.879c-.738.011-1.321.178-1.749.501-.427.316-.641.761-.641 1.336 0 .539.108.931.325 1.177.217.241.583.361 1.098.361zm9.739-6.812a3.787 3.787 0 00-.703-.061c-.797 0-1.354.436-1.67 1.309V119h-1.556v-9.51h1.512l.026.967c.416-.762 1.005-1.143 1.767-1.143.246 0 .45.041.615.124l.009 1.511zM44.412 119h-1.556v-9.51h1.556V119zm.123-12.032a.996.996 0 01-.22.659c-.146.176-.369.264-.667.264-.294 0-.513-.088-.66-.264a.996.996 0 01-.22-.659c0-.264.074-.487.22-.668.147-.182.367-.273.66-.273.292 0 .512.094.659.282a.99.99 0 01.228.659zm2.004 6.838c0-1.383.334-2.476 1.002-3.279.674-.808 1.562-1.213 2.663-1.213 1.102 0 1.986.393 2.654 1.178.674.785 1.02 1.855 1.038 3.208v1.002c0 1.377-.334 2.467-1.002 3.27-.668.802-1.559 1.204-2.672 1.204-1.102 0-1.987-.39-2.655-1.169-.662-.779-1.005-1.834-1.028-3.164v-1.037zm1.556.896c0 .979.19 1.749.571 2.312.387.556.905.835 1.556.835 1.37 0 2.077-.991 2.118-2.971v-1.072c0-.973-.194-1.741-.58-2.303-.387-.568-.905-.853-1.556-.853-.639 0-1.151.285-1.538.853-.38.562-.571 1.327-.571 2.294v.905zm14.537 1.714l1.731-6.926h1.653l-3.112 10.855c-.234.814-.565 1.432-.993 1.854-.428.428-.914.642-1.459.642-.21 0-.48-.047-.808-.141v-1.318l.342.035c.452 0 .803-.108 1.055-.325.258-.211.466-.58.624-1.108l.308-1.063-2.795-9.431h1.696l1.758 6.926zm17.28-1.477c-.071 1.372-.458 2.42-1.161 3.147-.697.726-1.685 1.09-2.962 1.09-1.283 0-2.303-.487-3.058-1.459-.756-.979-1.134-2.303-1.134-3.973v-2.32c0-1.664.386-2.98 1.16-3.946.78-.967 1.84-1.451 3.181-1.451 1.237 0 2.192.372 2.866 1.117.68.738 1.049 1.795 1.107 3.172h-1.626c-.07-1.043-.29-1.787-.659-2.232-.37-.445-.932-.668-1.688-.668-.873 0-1.544.343-2.012 1.028-.469.68-.703 1.679-.703 2.997v2.347c0 1.295.216 2.288.65 2.98.44.691 1.078 1.037 1.916 1.037.838 0 1.442-.208 1.81-.624.37-.416.598-1.163.686-2.242h1.626zm1.643-1.133c0-1.383.334-2.476 1.002-3.279.674-.808 1.561-1.213 2.663-1.213 1.101 0 1.986.393 2.654 1.178.674.785 1.02 1.855 1.037 3.208v1.002c0 1.377-.334 2.467-1.002 3.27-.668.802-1.558 1.204-2.672 1.204-1.101 0-1.986-.39-2.654-1.169-.662-.779-1.005-1.834-1.028-3.164v-1.037zm1.555.896c0 .979.19 1.749.572 2.312.386.556.905.835 1.555.835 1.371 0 2.078-.991 2.119-2.971v-1.072c0-.973-.194-1.741-.58-2.303-.387-.568-.906-.853-1.556-.853-.639 0-1.152.285-1.538.853-.381.562-.572 1.327-.572 2.294v.905zm9.273-5.212l.044 1.029c.603-.803 1.374-1.205 2.311-1.205 1.682 0 2.534 1.123 2.558 3.367V119h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.618-.475-1.116-.475-.387 0-.736.129-1.046.387-.305.258-.55.595-.738 1.011V119h-1.556v-9.51h1.468zm9.29-2.302v2.302h1.432v1.257h-1.432v5.898c0 .375.061.659.184.852.123.193.334.29.633.29.205 0 .413-.035.624-.105l-.017 1.318a3.405 3.405 0 01-1.081.176c-.616 0-1.084-.22-1.407-.659-.322-.44-.483-1.061-.483-1.864v-5.906h-1.45v-1.257h1.45v-2.302h1.547zm7.216 3.761a3.787 3.787 0 00-.703-.061c-.797 0-1.354.436-1.67 1.309V119h-1.556v-9.51h1.512l.026.967c.416-.762 1.005-1.143 1.767-1.143.246 0 .451.041.615.124l.009 1.511zm6.099 8.051c-.093-.205-.161-.551-.202-1.037-.551.808-1.254 1.213-2.109 1.213-.862 0-1.535-.24-2.022-.721-.48-.486-.72-1.169-.72-2.048 0-.967.328-1.734.984-2.303.656-.568 1.556-.858 2.698-.87h1.143v-1.01c0-.569-.126-.973-.378-1.213-.252-.24-.636-.361-1.152-.361-.468 0-.849.141-1.142.422-.293.276-.44.627-.44 1.055h-1.555c0-.486.143-.949.43-1.389a2.995 2.995 0 011.161-1.046 3.479 3.479 0 011.626-.378c.972 0 1.711.244 2.214.73.51.48.771 1.184.783 2.109v4.799c.005.733.105 1.368.298 1.907V119h-1.617zm-2.074-1.239c.381 0 .744-.106 1.09-.317.346-.211.598-.474.756-.791v-2.267h-.879c-.738.011-1.321.178-1.749.501-.428.316-.642.761-.642 1.336 0 .539.109.931.325 1.177.217.241.583.361 1.099.361zm10.433-1.196c0-.334-.126-.621-.378-.861s-.739-.521-1.459-.844c-.838-.345-1.43-.641-1.776-.887a2.57 2.57 0 01-.764-.835c-.17-.317-.255-.692-.255-1.125 0-.774.281-1.415.844-1.925.568-.516 1.292-.774 2.17-.774.926 0 1.67.27 2.233.809.562.539.844 1.231.844 2.074h-1.547c0-.427-.144-.791-.431-1.09-.287-.304-.653-.457-1.099-.457-.457 0-.817.121-1.081.361-.257.234-.386.551-.386.949 0 .316.093.571.281.765.193.193.653.448 1.38.764 1.154.451 1.939.894 2.355 1.327.416.428.624.973.624 1.635 0 .826-.284 1.488-.852 1.987-.569.492-1.33.738-2.285.738-.991 0-1.793-.284-2.409-.853-.615-.568-.922-1.289-.922-2.162h1.564c.018.527.179.941.483 1.239.305.299.733.449 1.284.449.515 0 .908-.115 1.177-.343.27-.235.405-.548.405-.941zm6.987 2.611c-1.184 0-2.092-.352-2.725-1.055-.632-.709-.955-1.746-.966-3.111v-1.152c0-1.418.307-2.528.922-3.331.622-.808 1.486-1.213 2.593-1.213 1.113 0 1.946.355 2.496 1.064.551.709.832 1.813.844 3.313v1.02h-5.309v.22c0 1.019.191 1.76.572 2.223.386.463.94.695 1.661.695.457 0 .858-.085 1.204-.255.352-.176.68-.451.984-.826l.809.984c-.674.949-1.702 1.424-3.085 1.424zm-.176-8.526c-.644 0-1.122.223-1.432.668-.311.44-.487 1.125-.528 2.057h3.744v-.211c-.041-.902-.205-1.547-.492-1.934-.281-.386-.712-.58-1.292-.58zm6.68-1.16l.044 1.029c.603-.803 1.374-1.205 2.311-1.205 1.682 0 2.535 1.123 2.558 3.367V119h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.618-.475-1.116-.475-.387 0-.735.129-1.046.387a2.803 2.803 0 00-.738 1.011V119h-1.556v-9.51h1.468zm4.421-3.709c0 .615-.153 1.125-.457 1.53-.305.398-.698.597-1.178.597-.205 0-.381-.029-.527-.088a3.117 3.117 0 01-.572-.36c-.234-.182-.404-.29-.509-.325a.993.993 0 00-.361-.062c-.199 0-.366.094-.501.281-.129.188-.193.422-.193.704l-1.011-.062c0-.639.155-1.16.466-1.564.311-.405.697-.607 1.16-.607.176 0 .334.035.475.106.14.064.316.173.527.325.217.152.393.261.527.325.135.059.282.088.44.088.199 0 .366-.094.501-.281.135-.194.202-.431.202-.712l1.011.105zM148.984 119c-.093-.205-.161-.551-.202-1.037-.551.808-1.254 1.213-2.109 1.213-.861 0-1.535-.24-2.022-.721-.48-.486-.72-1.169-.72-2.048 0-.967.328-1.734.984-2.303.656-.568 1.556-.858 2.698-.87h1.143v-1.01c0-.569-.126-.973-.378-1.213-.252-.24-.636-.361-1.151-.361-.469 0-.85.141-1.143.422-.293.276-.439.627-.439 1.055h-1.556c0-.486.143-.949.431-1.389a2.985 2.985 0 011.16-1.046 3.479 3.479 0 011.626-.378c.972 0 1.711.244 2.215.73.509.48.77 1.184.782 2.109v4.799c.006.733.105 1.368.299 1.907V119h-1.618zm-2.074-1.239c.381 0 .744-.106 1.09-.317.346-.211.598-.474.756-.791v-2.267h-.879c-.738.011-1.321.178-1.749.501-.428.316-.642.761-.642 1.336 0 .539.109.931.326 1.177.216.241.583.361 1.098.361zM123.864 24.03c-4.374.433-5.488 2.915-5.461 4.684v31.269h5.773V23.997l-.312.034zM86.202 24.037l-.275-.012h-.08c-.912.002-2.227.354-3.36 1.111-1.129.75-2.08 1.944-2.1 3.596v2.421h-3.95v4.355h3.95v17.736c0 .425.086 1.014.249 1.74.163.792.668 1.55 1.398 2.305.758.765 1.872 1.39 3.303 1.914 1.434.506 3.408.77 5.92.776h.278v-4.566h-.467c-1.1.004-1.969-.099-2.61-.329-.649-.236-1.146-.51-1.468-.818-.365-.33-.563-.649-.63-.959-.1-.37-.156-.698-.156-.966V35.51h5.33v-4.355h-5.33v-7.119h-.002zM70.567 31.928c1.41.523 2.502 1.149 3.257 1.91.741.74 1.203 1.526 1.358 2.307.162.723.268 1.286.272 1.743v22.087h-5.838V38.75c.002-.295-.057-.622-.132-.972-.084-.299-.29-.607-.626-.93-.343-.307-.844-.566-1.498-.803-.618-.227-1.51-.331-2.59-.331-1.143 0-2.072.104-2.736.33-.697.24-1.223.5-1.586.771-.373.308-.577.607-.683.911-.112.375-.166.647-.166.913v16.483l-.004.013c-.333 3.208-2.864 4.817-5.524 4.84l-.29.006V37.886c0-.464.087-1.033.252-1.752.16-.822.67-1.562 1.401-2.296.757-.767 1.87-1.389 3.3-1.91 1.432-.508 3.414-.777 5.916-.777 2.483 0 4.463.269 5.917.777z'%3E%3C/path%3E%3Cpath fill='%23182858' fill-rule='evenodd' d='M96.43 58.531c1.794 1.261 4.493 1.872 8.146 1.874 1.886 0 3.266-.143 4.645-.5 1.345-.35 2.455-.813 3.366-1.43.887-.62 1.553-1.346 1.961-2.154.434-.82.625-1.728.625-2.645V52.1h-5.428v.285c-.002.976-.335 1.968-.995 2.641-.609.643-2.127 1.027-4.174 1.022-1 0-1.832-.101-2.49-.278-.641-.192-1.182-.451-1.528-.727-.384-.306-.659-.628-.791-.934a2.535 2.535 0 01-.22-.993v-1.279c0-.397.097-1.101.243-1.459l.07-.178c.115-.3.257-.668.448-.86.276-.255.439-.398.673-.523.346-.188.471-.233.732-.328l.072-.026c.316-.126.484-.18 1.235-.293.182-.03.768-.107 1.54-.21 2.062-.273 5.446-.721 5.983-.886 1.532-.464 2.75-1.3 3.582-2.437.851-1.15 1.256-2.825 1.256-4.23v-2.518c0-.673-.129-1.4-.403-2.201-.307-.843-.87-1.56-1.672-2.233-.815-.67-1.925-1.218-3.313-1.652-1.406-.443-3.2-.65-5.415-.65-2.214 0-3.992.205-5.395.65-1.389.434-2.502.982-3.314 1.65-.8.675-1.367 1.392-1.671 2.227-.297.805-.424 1.534-.424 2.207v15.788c-.01 1.93.889 3.594 2.655 4.857zm3.038-18.93c0-1.334.379-2.35 1.133-3.068.777-.719 2.205-1.078 4.352-1.078 2.08 0 3.506.338 4.287 1.033.753.679 1.082 1.508 1.082 2.922 0 .698-.072 1.269-.411 1.92-.259.496-.522.848-.902 1.147-.482.338-1.017.622-1.617.757-.571.127-2.058.246-3.454.358-1.323.107-2.564.207-2.87.3l-.143.04c-.258.069-.541.145-.84.322-.358.186-.532.41-.615.768V39.6h-.002zM39.041 31.153c3.654 0 6.351.613 8.144 1.874 1.766 1.265 2.666 2.926 2.66 4.86V53.67c0 .676-.132 1.404-.425 2.207-.306.835-.872 1.553-1.675 2.232-.814.666-1.924 1.212-3.31 1.645-1.405.444-3.18.65-5.395.65-2.217 0-4.014-.204-5.419-.65-1.384-.433-2.496-.98-3.313-1.649-.798-.675-1.362-1.39-1.672-2.233-.27-.801-.4-1.526-.4-2.202v-2.516c0-1.404.406-3.079 1.255-4.23.834-1.141 2.052-1.974 3.584-2.438.559-.17 4.207-.652 6.232-.919.648-.085 1.13-.149 1.29-.173.748-.118.918-.168 1.236-.295l.076-.029c.257-.095.382-.141.731-.327.227-.126.392-.265.668-.523.19-.191.332-.556.45-.857l.072-.182c.14-.358.24-1.061.24-1.46v-1.277c0-.305-.074-.66-.22-.994-.134-.306-.41-.627-.792-.934-.344-.272-.889-.532-1.526-.726-.662-.175-1.492-.28-2.49-.278-2.049-.004-3.567.38-4.176 1.021-.66.672-.991 1.667-.997 2.643v.287h-5.428v-1.577c0-.919.195-1.826.625-2.648.412-.809 1.078-1.537 1.964-2.155.908-.617 2.02-1.08 3.37-1.43 1.372-.357 2.756-.5 4.642-.5zm3.972 23.874c.758-.72 1.137-1.733 1.137-3.065v-5.426c-.087.358-.26.58-.617.769-.293.175-.57.251-.821.32l-.16.045c-.305.092-1.525.19-2.833.295-1.407.114-2.916.235-3.494.365-.597.13-1.134.417-1.618.756-.38.293-.643.645-.9 1.141-.34.656-.415 1.223-.415 1.92 0 1.417.33 2.243 1.086 2.924.777.694 2.205 1.03 4.283 1.03 2.147 0 3.573-.359 4.352-1.074z' clip-rule='evenodd'%3E%3C/path%3E%3Cpath fill='%23F3AE00' d='M49.672 31.444c.782-3.782 8.773-2.142 11.244-5.21.616-.765 1.107-3.052.072-4.635-.553-.846-1.244-1.353-2.695-1.556a18.393 18.393 0 00-5.017-.023c-2.28.3-3.629 1.71-3.629 4.517 0 .507.02 6.92.025 6.907z'%3E%3C/path%3E%3C/svg%3E");

    !* !!! AJUSTE: Centra el contenedor del logo horizontalmente. *!
    margin-left: auto;
    margin-right: auto;

    !* Para que el logo se vea, necesita un alto. *!
    height: 123px;

    !* Para que el logo no se repita *!
    background-repeat: no-repeat;

    !* Para centrar el logo dentro del div *!
    background-position: center;

    !* Para asegurar que el logo quepa sin deformarse *!
    background-size: contain;

    !* Espacio entre el logo y el campo de usuario *!
    margin-bottom: 1.5rem;
}
*/

/* === ESTILOS PARA LA PÁGINA DE LOGIN (VERSIÓN FINAL) === */

/* 1. Estilos para el cuerpo (body) de la página de login. */
body.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--mdc-theme-body);
    padding: 0;
    margin: 0;
    flex-direction: row;
}

/* 2. Estilos para el contenedor principal del formulario. */
body.login-page #main-content {
    margin: 0;
    margin-bottom: 10vh;
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 500px;
    width: 90%;
}

/* 3. Estilos para la "tarjeta" del formulario. */
body.login-page #content .card {
    background-color: #ffffff;
    box-shadow: 0px 2px 1px -1px rgba(0,0,0,0.2),
    0px 1px 1px 0px rgba(0,0,0,0.14),
    0px 1px 3px 0px rgba(0,0,0,0.12);
}

/* 4. Estilo para el contenedor del logo DENTRO del formulario. */
.login-form-logo-container {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='123' fill='none'%3E%3Cpath fill='%23182858' d='M3.86 98H2.25V85.203h1.608V98zm4.069-9.51l.044 1.029c.603-.803 1.374-1.205 2.311-1.205 1.682 0 2.534 1.123 2.558 3.367V98h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.618-.475-1.116-.475-.387 0-.736.13-1.046.387a2.81 2.81 0 00-.738 1.01V98H6.46v-9.51h1.468zm6.943 4.325c0-1.483.27-2.602.809-3.358.539-.762 1.327-1.142 2.364-1.142.967 0 1.702.413 2.206 1.239l.08-1.064h1.405v9.598c0 1.178-.301 2.08-.905 2.707-.604.633-1.444.949-2.522.949-.47 0-.997-.117-1.582-.351-.58-.229-1.017-.513-1.31-.853l.633-1.072c.644.633 1.356.949 2.136.949 1.294 0 1.96-.706 1.995-2.118v-1.24c-.504.745-1.22 1.117-2.145 1.117-.984 0-1.752-.37-2.303-1.108-.55-.744-.838-1.81-.86-3.199v-1.055zm1.556.887c0 1.067.155 1.852.466 2.356.316.498.832.747 1.546.747.774 0 1.354-.396 1.74-1.187v-4.755c-.404-.779-.978-1.169-1.722-1.169-.715 0-1.23.252-1.547.756-.316.498-.477 1.266-.483 2.303v.95zm11.557-3.753a3.786 3.786 0 00-.703-.061c-.797 0-1.353.436-1.67 1.31V98h-1.555v-9.51h1.511l.027.967c.416-.762 1.005-1.142 1.766-1.142.246 0 .451.04.616.123l.008 1.511zm4.782 8.227c-1.184 0-2.092-.352-2.725-1.055-.633-.709-.955-1.746-.967-3.111v-1.152c0-1.418.308-2.528.923-3.33.621-.81 1.485-1.214 2.593-1.214 1.113 0 1.945.355 2.496 1.064.55.709.832 1.813.844 3.313v1.02h-5.309v.22c0 1.02.19 1.76.571 2.223.387.463.94.695 1.662.695.457 0 .858-.085 1.204-.255.351-.176.68-.451.984-.826l.809.984c-.674.95-1.703 1.424-3.085 1.424zm-.176-8.526c-.645 0-1.122.223-1.433.668-.31.44-.486 1.125-.527 2.057h3.744v-.21c-.041-.903-.205-1.548-.492-1.934-.281-.387-.712-.58-1.292-.58zm9.835 5.915c0-.334-.126-.62-.378-.86-.252-.241-.738-.522-1.46-.845-.837-.345-1.429-.641-1.775-.887a2.558 2.558 0 01-.764-.835c-.17-.317-.255-.692-.255-1.125 0-.774.281-1.415.844-1.925.568-.516 1.292-.773 2.17-.773.926 0 1.67.269 2.233.808.563.54.844 1.23.844 2.074h-1.547c0-.428-.144-.79-.43-1.09-.288-.304-.654-.457-1.1-.457-.456 0-.817.12-1.08.36-.258.235-.387.551-.387.95 0 .316.094.571.281.765.193.193.653.448 1.38.764 1.154.451 1.94.894 2.355 1.327.416.428.624.973.624 1.635 0 .826-.284 1.489-.852 1.987-.569.492-1.33.738-2.285.738-.99 0-1.793-.284-2.409-.853-.615-.568-.922-1.289-.922-2.162h1.564c.018.528.179.94.483 1.24.305.298.733.448 1.284.448.515 0 .908-.115 1.178-.343.269-.234.404-.548.404-.94zM50.907 98c-.093-.205-.16-.55-.202-1.037-.55.809-1.254 1.213-2.11 1.213-.86 0-1.535-.24-2.02-.72-.481-.487-.722-1.17-.722-2.049 0-.967.329-1.734.985-2.302.656-.569 1.556-.859 2.698-.87h1.143v-1.011c0-.569-.126-.973-.378-1.213-.252-.24-.636-.36-1.152-.36-.468 0-.85.14-1.142.421-.293.276-.44.627-.44 1.055h-1.555c0-.486.143-.95.43-1.389a2.987 2.987 0 011.16-1.046 3.481 3.481 0 011.627-.377c.972 0 1.71.243 2.214.729.51.48.77 1.184.783 2.11v4.798c.005.733.105 1.368.298 1.907V98h-1.617zm-2.074-1.24c.38 0 .744-.105 1.09-.316a1.95 1.95 0 00.756-.79v-2.268h-.88c-.737.011-1.32.178-1.748.5-.428.317-.642.762-.642 1.337 0 .539.109.931.325 1.177.217.24.583.36 1.099.36zm1.292-12.26h1.969l-2.356 2.584h-1.31l1.697-2.584zm10.688 1.688v2.302h1.432v1.257h-1.432v5.897c0 .375.061.66.184.853.123.193.334.29.633.29.205 0 .413-.035.624-.105L62.236 98a3.396 3.396 0 01-1.08.176c-.616 0-1.085-.22-1.407-.66-.322-.439-.483-1.06-.483-1.863v-5.906h-1.45V88.49h1.45v-2.302h1.547zm8.138 10.977c-.515.674-1.268 1.01-2.259 1.01-.86 0-1.511-.295-1.95-.887-.44-.598-.663-1.465-.669-2.602V88.49h1.547v6.082c0 1.483.445 2.224 1.336 2.224.943 0 1.594-.422 1.951-1.266v-7.04h1.556V98h-1.477l-.035-.835zM78.4 88.49l.044 1.029c.604-.803 1.374-1.205 2.312-1.205 1.681 0 2.534 1.123 2.558 3.367V98h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.619-.475-1.117-.475-.386 0-.735.13-1.045.387a2.81 2.81 0 00-.739 1.01V98h-1.555v-9.51h1.467zm6.926 4.316c0-1.383.334-2.476 1.002-3.279.674-.808 1.562-1.213 2.663-1.213 1.102 0 1.987.393 2.654 1.178.674.785 1.02 1.855 1.038 3.208v1.002c0 1.377-.334 2.467-1.002 3.27-.668.802-1.559 1.204-2.672 1.204-1.102 0-1.986-.39-2.654-1.17-.663-.778-1.005-1.833-1.029-3.163v-1.037zm1.556.896c0 .979.19 1.75.571 2.312.387.556.905.835 1.556.835 1.37 0 2.077-.99 2.118-2.971v-1.072c0-.973-.193-1.74-.58-2.303-.387-.568-.905-.853-1.556-.853-.638 0-1.151.285-1.538.853-.38.562-.571 1.327-.571 2.294v.905zm9.272-5.212l.035.88c.58-.704 1.345-1.056 2.294-1.056 1.061 0 1.802.46 2.224 1.38.598-.92 1.43-1.38 2.496-1.38 1.752 0 2.649 1.093 2.69 3.279V98h-1.547v-6.258c0-.691-.123-1.204-.369-1.538-.247-.34-.663-.51-1.248-.51a1.4 1.4 0 00-1.143.545c-.293.364-.463.826-.51 1.389V98h-1.564v-6.328c-.018-1.319-.554-1.978-1.609-1.978-.785 0-1.338.393-1.66 1.178V98h-1.548v-9.51h1.46zm18.976 5.212c0 1.483-.267 2.599-.8 3.349s-1.307 1.125-2.32 1.125c-1.008 0-1.764-.434-2.268-1.301L109.662 98h-1.415V84.5h1.547v5.036c.51-.814 1.242-1.222 2.197-1.222 1.043 0 1.825.37 2.347 1.108.521.738.785 1.851.791 3.34v.94zm-1.547-.888c0-1.124-.158-1.924-.475-2.399-.31-.48-.817-.72-1.52-.72-.803 0-1.4.433-1.793 1.3v4.526c.387.856.99 1.284 1.81 1.284.704 0 1.208-.246 1.512-.739.305-.492.46-1.256.466-2.294v-.958zm7.462-2.865a3.786 3.786 0 00-.703-.061c-.797 0-1.354.436-1.67 1.31V98h-1.556v-9.51h1.512l.026.967c.416-.762 1.005-1.142 1.767-1.142.246 0 .451.04.615.123l.009 1.511zm4.781 8.227c-1.183 0-2.092-.352-2.724-1.055-.633-.709-.955-1.746-.967-3.111v-1.152c0-1.418.307-2.528.923-3.33.621-.81 1.485-1.214 2.592-1.214 1.114 0 1.946.355 2.497 1.064.55.709.832 1.813.843 3.313v1.02h-5.308v.22c0 1.02.19 1.76.571 2.223.387.463.94.695 1.661.695.457 0 .858-.085 1.204-.255.352-.176.68-.451.985-.826l.808.984c-.674.95-1.702 1.424-3.085 1.424zm-.176-8.526c-.644 0-1.122.223-1.432.668-.311.44-.487 1.125-.528 2.057h3.745v-.21c-.041-.903-.205-1.548-.493-1.934-.281-.387-.712-.58-1.292-.58zm9.018 3.164c0-1.464.272-2.58.817-3.348.551-.768 1.339-1.151 2.365-1.151.908 0 1.617.369 2.127 1.107V84.5h1.555V98h-1.424l-.079-1.02c-.509.797-1.239 1.196-2.188 1.196-.985 0-1.758-.381-2.32-1.143-.557-.767-.841-1.848-.853-3.243v-.976zm1.556.888c0 1.067.158 1.852.474 2.356.317.498.832.747 1.547.747.774 0 1.351-.39 1.732-1.17v-4.798c-.399-.762-.973-1.143-1.723-1.143-.715 0-1.231.252-1.547.756-.316.498-.477 1.266-.483 2.303v.95zm11.1 4.474c-1.183 0-2.092-.352-2.724-1.055-.633-.709-.955-1.746-.967-3.111v-1.152c0-1.418.307-2.528.923-3.33.621-.81 1.485-1.214 2.592-1.214 1.114 0 1.946.355 2.497 1.064.55.709.832 1.813.843 3.313v1.02h-5.308v.22c0 1.02.19 1.76.571 2.223.387.463.94.695 1.661.695.457 0 .859-.085 1.204-.255.352-.176.68-.451.985-.826l.808.984c-.674.95-1.702 1.424-3.085 1.424zm-.176-8.526c-.644 0-1.122.223-1.432.668-.311.44-.486 1.125-.527 2.057h3.744v-.21c-.041-.903-.205-1.548-.493-1.934-.281-.387-.711-.58-1.292-.58zM9.449 106.203v9.097c-.011 1.213-.363 2.162-1.054 2.847-.692.686-1.656 1.029-2.892 1.029-1.266 0-2.232-.334-2.9-1.002-.668-.674-1.008-1.632-1.02-2.874v-9.097h1.6v9.035c0 .862.181 1.506.545 1.934.369.422.96.633 1.775.633.82 0 1.412-.211 1.775-.633.37-.428.554-1.072.554-1.934v-9.035h1.617zm6.882 10.362c0-.334-.126-.621-.378-.861s-.738-.521-1.459-.844c-.838-.345-1.43-.641-1.775-.887a2.561 2.561 0 01-.765-.835c-.17-.317-.255-.692-.255-1.125 0-.774.281-1.415.844-1.925.568-.516 1.292-.774 2.17-.774.927 0 1.67.27 2.233.809.563.539.844 1.231.844 2.074h-1.547c0-.427-.143-.791-.43-1.09-.288-.304-.654-.457-1.1-.457-.456 0-.816.121-1.08.361-.258.234-.387.551-.387.949 0 .316.094.571.281.765.194.193.654.448 1.38.764 1.154.451 1.94.894 2.356 1.327.416.428.624.973.624 1.635 0 .826-.285 1.488-.853 1.987-.568.492-1.33.738-2.285.738-.99 0-1.793-.284-2.408-.853-.615-.568-.923-1.289-.923-2.162h1.564c.018.527.18.941.484 1.239.305.299.732.449 1.283.449.516 0 .908-.115 1.178-.343.27-.235.404-.548.404-.941zm8.438 1.6c-.516.674-1.269 1.011-2.26 1.011-.86 0-1.511-.296-1.95-.888-.44-.598-.663-1.465-.668-2.601v-6.197h1.547v6.082c0 1.483.445 2.224 1.335 2.224.944 0 1.594-.422 1.952-1.266v-7.04h1.555V119h-1.476l-.035-.835zm8.745.835c-.094-.205-.162-.551-.203-1.037-.55.808-1.253 1.213-2.109 1.213-.861 0-1.535-.24-2.021-.721-.48-.486-.721-1.169-.721-2.048 0-.967.328-1.734.984-2.303.657-.568 1.556-.858 2.699-.87h1.142v-1.01c0-.569-.126-.973-.378-1.213-.252-.24-.635-.361-1.151-.361-.469 0-.85.141-1.143.422-.293.276-.44.627-.44 1.055h-1.555c0-.486.144-.949.43-1.389a2.991 2.991 0 011.161-1.046 3.48 3.48 0 011.626-.378c.973 0 1.71.244 2.215.73.51.48.77 1.184.782 2.109v4.799c.006.733.105 1.368.299 1.907V119h-1.617zm-2.075-1.239c.381 0 .745-.106 1.09-.317.346-.211.598-.474.756-.791v-2.267h-.879c-.738.011-1.321.178-1.749.501-.427.316-.641.761-.641 1.336 0 .539.108.931.325 1.177.217.241.583.361 1.098.361zm9.739-6.812a3.787 3.787 0 00-.703-.061c-.797 0-1.354.436-1.67 1.309V119h-1.556v-9.51h1.512l.026.967c.416-.762 1.005-1.143 1.767-1.143.246 0 .45.041.615.124l.009 1.511zM44.412 119h-1.556v-9.51h1.556V119zm.123-12.032a.996.996 0 01-.22.659c-.146.176-.369.264-.667.264-.294 0-.513-.088-.66-.264a.996.996 0 01-.22-.659c0-.264.074-.487.22-.668.147-.182.367-.273.66-.273.292 0 .512.094.659.282a.99.99 0 01.228.659zm2.004 6.838c0-1.383.334-2.476 1.002-3.279.674-.808 1.562-1.213 2.663-1.213 1.102 0 1.986.393 2.654 1.178.674.785 1.02 1.855 1.038 3.208v1.002c0 1.377-.334 2.467-1.002 3.27-.668.802-1.559 1.204-2.672 1.204-1.102 0-1.987-.39-2.655-1.169-.662-.779-1.005-1.834-1.028-3.164v-1.037zm1.556.896c0 .979.19 1.749.571 2.312.387.556.905.835 1.556.835 1.37 0 2.077-.991 2.118-2.971v-1.072c0-.973-.194-1.741-.58-2.303-.387-.568-.905-.853-1.556-.853-.639 0-1.151.285-1.538.853-.38.562-.571 1.327-.571 2.294v.905zm14.537 1.714l1.731-6.926h1.653l-3.112 10.855c-.234.814-.565 1.432-.993 1.854-.428.428-.914.642-1.459.642-.21 0-.48-.047-.808-.141v-1.318l.342.035c.452 0 .803-.108 1.055-.325.258-.211.466-.58.624-1.108l.308-1.063-2.795-9.431h1.696l1.758 6.926zm17.28-1.477c-.071 1.372-.458 2.42-1.161 3.147-.697.726-1.685 1.09-2.962 1.09-1.283 0-2.303-.487-3.058-1.459-.756-.979-1.134-2.303-1.134-3.973v-2.32c0-1.664.386-2.98 1.16-3.946.78-.967 1.84-1.451 3.181-1.451 1.237 0 2.192.372 2.866 1.117.68.738 1.049 1.795 1.107 3.172h-1.626c-.07-1.043-.29-1.787-.659-2.232-.37-.445-.932-.668-1.688-.668-.873 0-1.544.343-2.012 1.028-.469.68-.703 1.679-.703 2.997v2.347c0 1.295.216 2.288.65 2.98.44.691 1.078 1.037 1.916 1.037.838 0 1.442-.208 1.81-.624.37-.416.598-1.163.686-2.242h1.626zm1.643-1.133c0-1.383.334-2.476 1.002-3.279.674-.808 1.561-1.213 2.663-1.213 1.101 0 1.986.393 2.654 1.178.674.785 1.02 1.855 1.037 3.208v1.002c0 1.377-.334 2.467-1.002 3.27-.668.802-1.558 1.204-2.672 1.204-1.101 0-1.986-.39-2.654-1.169-.662-.779-1.005-1.834-1.028-3.164v-1.037zm1.555.896c0 .979.19 1.749.572 2.312.386.556.905.835 1.555.835 1.371 0 2.078-.991 2.119-2.971v-1.072c0-.973-.194-1.741-.58-2.303-.387-.568-.906-.853-1.556-.853-.639 0-1.152.285-1.538.853-.381.562-.572 1.327-.572 2.294v.905zm9.273-5.212l.044 1.029c.603-.803 1.374-1.205 2.311-1.205 1.682 0 2.534 1.123 2.558 3.367V119h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.618-.475-1.116-.475-.387 0-.736.129-1.046.387-.305.258-.55.595-.738 1.011V119h-1.556v-9.51h1.468zm9.29-2.302v2.302h1.432v1.257h-1.432v5.898c0 .375.061.659.184.852.123.193.334.29.633.29.205 0 .413-.035.624-.105l-.017 1.318a3.405 3.405 0 01-1.081.176c-.616 0-1.084-.22-1.407-.659-.322-.44-.483-1.061-.483-1.864v-5.906h-1.45v-1.257h1.45v-2.302h1.547zm7.216 3.761a3.787 3.787 0 00-.703-.061c-.797 0-1.354.436-1.67 1.309V119h-1.556v-9.51h1.512l.026.967c.416-.762 1.005-1.143 1.767-1.143.246 0 .451.041.615.124l.009 1.511zm6.099 8.051c-.093-.205-.161-.551-.202-1.037-.551.808-1.254 1.213-2.109 1.213-.862 0-1.535-.24-2.022-.721-.48-.486-.72-1.169-.72-2.048 0-.967.328-1.734.984-2.303.656-.568 1.556-.858 2.698-.87h1.143v-1.01c0-.569-.126-.973-.378-1.213-.252-.24-.636-.361-1.152-.361-.468 0-.849.141-1.142.422-.293.276-.44.627-.44 1.055h-1.555c0-.486.143-.949.43-1.389a2.995 2.995 0 011.161-1.046 3.479 3.479 0 011.626-.378c.972 0 1.711.244 2.214.73.51.48.771 1.184.783 2.109v4.799c.005.733.105 1.368.298 1.907V119h-1.617zm-2.074-1.239c.381 0 .744-.106 1.09-.317.346-.211.598-.474.756-.791v-2.267h-.879c-.738.011-1.321.178-1.749.501-.428.316-.642.761-.642 1.336 0 .539.109.931.325 1.177.217.241.583.361 1.099.361zm10.433-1.196c0-.334-.126-.621-.378-.861s-.739-.521-1.459-.844c-.838-.345-1.43-.641-1.776-.887a2.57 2.57 0 01-.764-.835c-.17-.317-.255-.692-.255-1.125 0-.774.281-1.415.844-1.925.568-.516 1.292-.774 2.17-.774.926 0 1.67.27 2.233.809.562.539.844 1.231.844 2.074h-1.547c0-.427-.144-.791-.431-1.09-.287-.304-.653-.457-1.099-.457-.457 0-.817.121-1.081.361-.257.234-.386.551-.386.949 0 .316.093.571.281.765.193.193.653.448 1.38.764 1.154.451 1.939.894 2.355 1.327.416.428.624.973.624 1.635 0 .826-.284 1.488-.852 1.987-.569.492-1.33.738-2.285.738-.991 0-1.793-.284-2.409-.853-.615-.568-.922-1.289-.922-2.162h1.564c.018.527.179.941.483 1.239.305.299.733.449 1.284.449.515 0 .908-.115 1.177-.343.27-.235.405-.548.405-.941zm6.987 2.611c-1.184 0-2.092-.352-2.725-1.055-.632-.709-.955-1.746-.966-3.111v-1.152c0-1.418.307-2.528.922-3.331.622-.808 1.486-1.213 2.593-1.213 1.113 0 1.946.355 2.496 1.064.551.709.832 1.813.844 3.313v1.02h-5.309v.22c0 1.019.191 1.76.572 2.223.386.463.94.695 1.661.695.457 0 .858-.085 1.204-.255.352-.176.68-.451.984-.826l.809.984c-.674.949-1.702 1.424-3.085 1.424zm-.176-8.526c-.644 0-1.122.223-1.432.668-.311.44-.487 1.125-.528 2.057h3.744v-.211c-.041-.902-.205-1.547-.492-1.934-.281-.386-.712-.58-1.292-.58zm6.68-1.16l.044 1.029c.603-.803 1.374-1.205 2.311-1.205 1.682 0 2.535 1.123 2.558 3.367V119h-1.547v-6.249c0-.744-.126-1.272-.378-1.582-.246-.316-.618-.475-1.116-.475-.387 0-.735.129-1.046.387a2.803 2.803 0 00-.738 1.011V119h-1.556v-9.51h1.468zm4.421-3.709c0 .615-.153 1.125-.457 1.53-.305.398-.698.597-1.178.597-.205 0-.381-.029-.527-.088a3.117 3.117 0 01-.572-.36c-.234-.182-.404-.29-.509-.325a.993.993 0 00-.361-.062c-.199 0-.366.094-.501.281-.129.188-.193.422-.193.704l-1.011-.062c0-.639.155-1.16.466-1.564.311-.405.697-.607 1.16-.607.176 0 .334.035.475.106.14.064.316.173.527.325.217.152.393.261.527.325.135.059.282.088.44.088.199 0 .366-.094.501-.281.135-.194.202-.431.202-.712l1.011.105zM148.984 119c-.093-.205-.161-.551-.202-1.037-.551.808-1.254 1.213-2.109 1.213-.861 0-1.535-.24-2.022-.721-.48-.486-.72-1.169-.72-2.048 0-.967.328-1.734.984-2.303.656-.568 1.556-.858 2.698-.87h1.143v-1.01c0-.569-.126-.973-.378-1.213-.252-.24-.636-.361-1.151-.361-.469 0-.85.141-1.143.422-.293.276-.439.627-.439 1.055h-1.556c0-.486.143-.949.431-1.389a2.985 2.985 0 011.16-1.046 3.479 3.479 0 011.626-.378c.972 0 1.711.244 2.215.73.509.48.77 1.184.782 2.109v4.799c.006.733.105 1.368.299 1.907V119h-1.618zm-2.074-1.239c.381 0 .744-.106 1.09-.317.346-.211.598-.474.756-.791v-2.267h-.879c-.738.011-1.321.178-1.749.501-.428.316-.642.761-.642 1.336 0 .539.109.931.326 1.177.216.241.583.361 1.098.361zM123.864 24.03c-4.374.433-5.488 2.915-5.461 4.684v31.269h5.773V23.997l-.312.034zM86.202 24.037l-.275-.012h-.08c-.912.002-2.227.354-3.36 1.111-1.129.75-2.08 1.944-2.1 3.596v2.421h-3.95v4.355h3.95v17.736c0 .425.086 1.014.249 1.74.163.792.668 1.55 1.398 2.305.758.765 1.872 1.39 3.303 1.914 1.434.506 3.408.77 5.92.776h.278v-4.566h-.467c-1.1.004-1.969-.099-2.61-.329-.649-.236-1.146-.51-1.468-.818-.365-.33-.563-.649-.63-.959-.1-.37-.156-.698-.156-.966V35.51h5.33v-4.355h-5.33v-7.119h-.002zM70.567 31.928c1.41.523 2.502 1.149 3.257 1.91.741.74 1.203 1.526 1.358 2.307.162.723.268 1.286.272 1.743v22.087h-5.838V38.75c.002-.295-.057-.622-.132-.972-.084-.299-.29-.607-.626-.93-.343-.307-.844-.566-1.498-.803-.618-.227-1.51-.331-2.59-.331-1.143 0-2.072.104-2.736.33-.697.24-1.223.5-1.586.771-.373.308-.577.607-.683.911-.112.375-.166.647-.166.913v16.483l-.004.013c-.333 3.208-2.864 4.817-5.524 4.84l-.29.006V37.886c0-.464.087-1.033.252-1.752.16-.822.67-1.562 1.401-2.296.757-.767 1.87-1.389 3.3-1.91 1.432-.508 3.414-.777 5.916-.777 2.483 0 4.463.269 5.917.777z'%3E%3C/path%3E%3Cpath fill='%23182858' fill-rule='evenodd' d='M96.43 58.531c1.794 1.261 4.493 1.872 8.146 1.874 1.886 0 3.266-.143 4.645-.5 1.345-.35 2.455-.813 3.366-1.43.887-.62 1.553-1.346 1.961-2.154.434-.82.625-1.728.625-2.645V52.1h-5.428v.285c-.002.976-.335 1.968-.995 2.641-.609.643-2.127 1.027-4.174 1.022-1 0-1.832-.101-2.49-.278-.641-.192-1.182-.451-1.528-.727-.384-.306-.659-.628-.791-.934a2.535 2.535 0 01-.22-.993v-1.279c0-.397.097-1.101.243-1.459l.07-.178c.115-.3.257-.668.448-.86.276-.255.439-.398.673-.523.346-.188.471-.233.732-.328l.072-.026c.316-.126.484-.18 1.235-.293.182-.03.768-.107 1.54-.21 2.062-.273 5.446-.721 5.983-.886 1.532-.464 2.75-1.3 3.582-2.437.851-1.15 1.256-2.825 1.256-4.23v-2.518c0-.673-.129-1.4-.403-2.201-.307-.843-.87-1.56-1.672-2.233-.815-.67-1.925-1.218-3.313-1.652-1.406-.443-3.2-.65-5.415-.65-2.214 0-3.992.205-5.395.65-1.389.434-2.502.982-3.314 1.65-.8.675-1.367 1.392-1.671 2.227-.297.805-.424 1.534-.424 2.207v15.788c-.01 1.93.889 3.594 2.655 4.857zm3.038-18.93c0-1.334.379-2.35 1.133-3.068.777-.719 2.205-1.078 4.352-1.078 2.08 0 3.506.338 4.287 1.033.753.679 1.082 1.508 1.082 2.922 0 .698-.072 1.269-.411 1.92-.259.496-.522.848-.902 1.147-.482.338-1.017.622-1.617.757-.571.127-2.058.246-3.454.358-1.323.107-2.564.207-2.87.3l-.143.04c-.258.069-.541.145-.84.322-.358.186-.532.41-.615.768V39.6h-.002zM39.041 31.153c3.654 0 6.351.613 8.144 1.874 1.766 1.265 2.666 2.926 2.66 4.86V53.67c0 .676-.132 1.404-.425 2.207-.306.835-.872 1.553-1.675 2.232-.814.666-1.924 1.212-3.31 1.645-1.405.444-3.18.65-5.395.65-2.217 0-4.014-.204-5.419-.65-1.384-.433-2.496-.98-3.313-1.649-.798-.675-1.362-1.39-1.672-2.233-.27-.801-.4-1.526-.4-2.202v-2.516c0-1.404.406-3.079 1.255-4.23.834-1.141 2.052-1.974 3.584-2.438.559-.17 4.207-.652 6.232-.919.648-.085 1.13-.149 1.29-.173.748-.118.918-.168 1.236-.295l.076-.029c.257-.095.382-.141.731-.327.227-.126.392-.265.668-.523.19-.191.332-.556.45-.857l.072-.182c.14-.358.24-1.061.24-1.46v-1.277c0-.305-.074-.66-.22-.994-.134-.306-.41-.627-.792-.934-.344-.272-.889-.532-1.526-.726-.662-.175-1.492-.28-2.49-.278-2.049-.004-3.567.38-4.176 1.021-.66.672-.991 1.667-.997 2.643v.287h-5.428v-1.577c0-.919.195-1.826.625-2.648.412-.809 1.078-1.537 1.964-2.155.908-.617 2.02-1.08 3.37-1.43 1.372-.357 2.756-.5 4.642-.5zm3.972 23.874c.758-.72 1.137-1.733 1.137-3.065v-5.426c-.087.358-.26.58-.617.769-.293.175-.57.251-.821.32l-.16.045c-.305.092-1.525.19-2.833.295-1.407.114-2.916.235-3.494.365-.597.13-1.134.417-1.618.756-.38.293-.643.645-.9 1.141-.34.656-.415 1.223-.415 1.92 0 1.417.33 2.243 1.086 2.924.777.694 2.205 1.03 4.283 1.03 2.147 0 3.573-.359 4.352-1.074z' clip-rule='evenodd'%3E%3C/path%3E%3Cpath fill='%23F3AE00' d='M49.672 31.444c.782-3.782 8.773-2.142 11.244-5.21.616-.765 1.107-3.052.072-4.635-.553-.846-1.244-1.353-2.695-1.556a18.393 18.393 0 00-5.017-.023c-2.28.3-3.629 1.71-3.629 4.517 0 .507.02 6.92.025 6.907z'%3E%3C/path%3E%3C/svg%3E");
    margin-left: auto;
    margin-right: auto;
    height: 123px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 1.5rem;
}





/* 5. Estilos para el botón de LOGIN. */
#fm1 button[type="submit"].mdc-button--raised {
    /* !!! AJUSTE: Centrar el botón y ajustar su tamaño. */
    display: block;      /* Necesario para que los márgenes automáticos funcionen */
    width: 80%;         /* Ocupa el ancho disponible dentro de su contenedor */
    max-width: 380px;    /* Limita el ancho máximo. Ajústalo si lo quieres más ancho o estrecho. */
    height: 46px;        /* Misma altura que los campos de texto. */
    margin-left: auto;   /* Centra el botón horizontalmente */
    margin-right: auto;  /* Centra el botón horizontalmente */
}

/* 6. Estilos para el botón de LOGIN al pasar el mouse (hover). */
#fm1 button[type="submit"].mdc-button--raised:not(:disabled):hover {
    /* !!! AJUSTE: Quitar el cambio de color y la animación de escala. */
    background-color: #ff9c02; /* Mantiene el mismo color naranja. */
    transform: none; /* Quita el efecto de "crecer". */
}



