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;
}*/

/*--------------------------------------------------------------
# TEXT
--------------------------------------------------------------*/
.align-to-switch {
    display: inline-block;
    vertical-align: 3px;
}

/*--------------------------------------------------------------
# PANEL
--------------------------------------------------------------*/

.panel-background {
    min-height: 100vh;
    height:auto;
    background: #C9D6FF; /* fallback for old browsers */
    background: -webkit-linear-gradient(to top, #E2E2E2, #C9D6FF); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #E2E2E2, #C9D6FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.panel-background-image {
    
}

.fill-screen {
    min-height: 100vh;
    height: auto;
}

/*--------------------------------------------------------------
# AUTOCOMPLETE SEARCH BAR
--------------------------------------------------------------*/
.search-input input {
    width: 100% !important;
    margin: 0px;
}

.search-input.active input {
    border-radius: 5px 5px 0px 0px;
}

.search-input .result-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    max-height: 280px;
    overflow-y: auto;
}

.search-input.active .result-box {
    background-color: white;
    position: absolute;
    width: calc(100% - 2rem);
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    border: 1px solid var(--p-input-bd);
    border-radius: 0px 0px 5px 5px;
}

.result-box li {
    list-style: none;
    padding: 7px;
    display: none;
    width: 100%;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.813rem;
    color: var(--p-input-color);
}

.search-input.active .result-box li {
    display: block;
}

.result-box li:hover {
    background: #efefef;
}

/*--------------------------------------------------------------
# LOGIN
--------------------------------------------------------------*/
.login-background {
    height: 100vh;
    background-image: url('../img/Login/LoginGradient.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.login-btn {
    margin: 32px 0px 0px 0px;
}