﻿#logo {
    max-width: 26vh;
    height: auto;
}

h1 {
    color: var(--blue);
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.bg-dark {
    background-color: black !important;
    opacity: 0.45 !important;
}

#forgot-password {
    text-decoration: none;
    font-size: 15px;
    color: var(--blue);
}

#forgot-password:hover {
    text-decoration: underline;
}

#body {
    background-image: url('../login_bg.jpg') !important;
    background-size: cover !important;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-position: center center;
}

html, #body {
    height: 100%;
    overflow: hidden;
}

.position-relative {
    position: relative;
}

.bg-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #343a40;
    border-radius: 10px;
    z-index: -1;
}

#login-submit, #encerrarSessoesBtn {
    border: none !important;
}