/* BULMA OVERRIDES */
:root {
    --bulma-primary: rgba(10, 75, 116, 0.8);
}


/* LAYOUT */
html,
body {
  height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
#wrapper {
    flex: 1 0 auto;
}
.footer {
    flex-shrink: 0;
}
#hero-header {
    background-image: url("../img/fsmp-header-k9sXH0J.webp");
    background-size: cover;
    background-repeat: no-repeat;
}
#hero-header .hero-body {
    background-color: rgba(0, 0, 0, 0.5);
}
.button.is-dark:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
#navMenu.is-active a.navbar-item {
    display: inline-flex;
}
#navMenu.is-active .navbar-start {
    text-align: center;
}
#navMenu.is-active .buttons {
    justify-content: space-around;
}
/* FORM */
.togglePassword {
    pointer-events: all;
    cursor: pointer;
}
.togglePassword:hover {
    color: var(--bulma-input-icon-hover-color);
}
.label.is-required::after {
    content: ' *';
    color: red;
    font-weight: normal;
}
.input-numeric input {
    text-align: right;
    padding-right: 1em;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}
input[type=checkbox] {
    transform: scale(1.3);
    margin: 0 0.5em 0 0.2em;
}