@font-face {
    font-family: "Lato-Regular";
    src: url("/public/fonts/Lato-Regular.eot");
    src: url("/public/fonts/Lato-Regular.eot") format("embedded-opentype"),
        url("/public/fonts/Lato-Regular.woff") format("woff"),
        url("/public/fonts/Lato-Regular.ttf") format("truetype");
}
body {
    font-family: "Lato-Regular", Arial, Gadget, sans-serif;
    background-color: #06161e;
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 2.4rem;
    overflow: hidden;
}
.login-screen {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    background: url("/public/images/vague.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
}
.swoopsrch {
    font-size: 30px;
}
.version-name {
    margin-top: 8px;
    font-size: 14px;
    line-height: 18px;
}
.version-number {
    font-size: 14px;
    line-height: 18px;
}
.access-denied {
    color: rgba(250, 250, 250, 0.86);
    font-size: 0.9rem;
}
.centered {
    position: fixed;
    top: 0;
    width: 380px;
    margin: 8% auto;
    margin-left: -190px;
    left: 50%;
    text-align: center;
}
.centered.wide {
    width: 400px;
}
.auth-logo {
    width: 180px;
    position: relative;
    left: 1px;
    opacity: 0.9;
}
.alert-warning {
    font-size: 0.9rem;
    min-height: 18px;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
form {
    padding: 60px;
    text-align: center;
}
input {
    width: 220px;
    height: 18px;
    padding: 3%;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    outline: none;
}
input:focus {
    border-bottom: 2px solid #38a9d9;
}
a.hyperlink {
    margin-top: 14px;
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    display: auto;
}
a.hyperlink.hide {
    display: none;
}
a.hyperlink:hover {
    text-decoration: underline;
}
span.info-text {
    margin-top: 14px;
    color: rgba(250, 250, 250, 0.8);
    text-decoration: none;
    font-size: 13px;
    display: none;
}
span.info-text.show {
    display: inline-block;
}
a.button {
    font-size: 13px;
    text-decoration: none;
    margin-top: 14px;
    color: rgba(250, 250, 250, 0.8);
    border-radius: 4px;
    background-color: rgba(250, 250, 250, 0.1);
    min-width: 221px;
    height: 32px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
    line-height: 32px;
    padding: 8px 4px 8px 16px;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}
a.button.text-center {
    justify-content: center;
}
a.button:hover {
    background-color: rgba(250, 250, 250, 0.2);
    color: rgba(250, 250, 250, 0.96);
    text-decoration: none;
}
a.return-to-login {
    width: 200px;
    display: inline-block;
}
button {
    margin-top: 14px;
    color: rgba(250, 250, 250, 0.8);
    border-radius: 4px;
    background-color: rgba(250, 250, 250, 0.1);
    width: 237px;
    height: 32px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
}
button:hover {
    background-color: rgba(250, 250, 250, 0.2);
    color: rgba(250, 250, 250, 0.96);
}

a.button:hover:has(.dropdown:hover) {
  background: initial;
}

.menu-wrapper {
    position: relative;
    display: inline-block;
}

.ellipsis-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
}

.dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 14px;
    display: none;
    z-index: 1000;
    margin-right: -6px;
    font-weight: normal;

    color: rgba(250, 250, 250, 0.8);
    border-radius: 4px;
    background-color: rgba(250, 250, 250, 0.1);
    height: 32px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    cursor: pointer;
    line-height: 32px;
    padding: 0px 16px 0px 16px;
    white-space: nowrap;
    text-align: left;
}

.dropdown.open {
    display: block;
}

.dropdown:hover {
    background-color: rgba(250, 250, 250, 0.2);
    color: rgba(250, 250, 250, 0.96);
}
    
