@font-face {
    font-family: 'SF Pro Text';
    src: url("/fonts/SF-Pro-Text-Regular.otf");
}

@font-face {
    font-family: 'SF Pro Regular';
    src: url("/fonts/SF-Pro-Display-Regular.otf");
}

@font-face {
    font-family: 'SF Pro Bold';
    src: url("/fonts/SF-Pro-Display-Bold.otf");
}

body {
    background-image: url(./images/login/sign-in-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'SF Pro Text', 'SF Pro Regular';
}

.filtered-bg-image {
    background-image: url(./images/login/sign-in-bg-filter.png);
    opacity: 0.45;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
}

#LoginPanel {
    z-index: 2;
    position: absolute;
    left: 223px;
    border-radius: var(--br-8xs);
    background-color: #ffffff;
    box-shadow: 0 30px 26px rgba(226, 226, 226, 0.8);
    width: 500px;
    height: 600px;
    padding: 20px;
}

.s-Login-Logo {
    width: 400px;
    height: 200px;
    background-image: url(./images/diagnoseq-logo.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    left: 20px;
    position: relative;
}

.s-Login-Header {
    position: relative;
    text-align: center;
    font-family: 'SF Pro Bold';
    margin-bottom: 30px;
}

.s-Login-Header h3 {
    color: #2c335f;
    letter-spacing: 0.5px;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

#LoginPanel .field {
    display: grid;
}

#LoginPanel .field label {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px;
}

.s-Form {
    padding: 0 40px 0px 40px;
}

#LoginPanel .btn {
    width: 100%;
    background-color: #1966aa;
    margin-top: 50px;
}

#LoginPanel input {
    height: 30px;
    font-size: 15px;
}

#LoginPanel .forgot-password {
    font-size: 15px;
    font-family: 'SF Pro Regular';
    float: right !important;
    text-decoration: underline;
    font-weight: 300;
    color: var(--color-slategray);
    margin-top: 3px;
    text-transform: capitalize;
    color: #224361d3;
}

#LoginPanel .enlighten {
    font-size: 15px;
    font-family: 'SF Pro Regular';
    float: left !important;
    text-decoration: underline;
    font-weight: 300;
    color: var(--color-slategray);
    margin-top: 3px;
    text-transform: capitalize;
    color: #224361d3;
    cursor: pointer;
}

#LoginPanel .s-PropertyGrid .categories {
    overflow-y: visible;
}

#LoginPanel .field label sup {
    display: none;
}

#LoginPanel .field label.error {
    display: none !important;
}
 