body {
    background: url('../images/background.jpg');
    background-repeat: no-repeat;    
    background-clip: border-box;
    background-size: cover;
}

#mainDiv, #contentDiv {
    position: relative;
    padding: 1%;
    background: #201d1d;
    background: #0a09099c;
    border-radius: 64px;
    overflow: scroll;
    border: 3px solid black;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
#mainDiv {
    display: inline-block;
    width: 54%;
    height: 70%;
    margin: 6% 22%;
}

#contentDiv {
    display: none;
    width: 84%;
    height: 80%;
    margin: 3% 7%;
}

.right, .left{
    position: relative;
    width: 41%;
    height: inherit;
    height: -webkit-fill-available;
    padding: 4%;
    overflow: scroll;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.right {
    float: right;
}

#logoDiv>img {
    width: 100%;
    /* height: 100%; */
    margin-top: 20%;
    object-fit: scale-down;
}

.left {
    float: left;
    /* min-width: 4in; */
}

::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.text {
    display: block;
    padding: 16px;
    width: 98%;
    margin: 16px 0; 
    color: white;
    background: #404040;
    background: #40404099;
    border: 2px solid white;
    border-radius: 32px;
    outline: none;
}

::placeholder {
    color: white;
    opacity: 0.7;
}

#loginBtnDiv, .btnDiv {
    display: inline-block;
    width: 100%;
}

#logoutBtnDiv {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 8 8;
    height: auto;
    z-index: 10000; 
}

.button {
    display: block;
    padding: 16px;
    margin: 16px auto;
    color: white;
    background-image: radial-gradient(#da3604, #db3f0f, #d45d38);
    border: 2px solid black;
    border-radius: 16px;
}

#logoutBtnDiv > .button {
    float: right;
    margin: unset;
}

.button:hover {
    background-image: radial-gradient(#da580d, #d8621d, #d47e4c);
}

.button:active {
    background-image: radial-gradient(#da3604, #db3f0f, #d45d38);
}

.inline {
    display: inline-block;
    width: auto;
    min-width: 1in;
}

.button:disabled {
    background: #d36c4d;
}
  
#loginHeader {
    position: relative;
    font-size: 36px;
    color: white;
    width: 100%;
}

#loginHeader>p {
    margin: 8% auto;
    margin-top: 10%;
    width: fit-content;
    width: -moz-fit-content;
}

#lblInfo, #lblInfo2 {
    display: block;
    color: red;
    font-size: 24px;
}


@media only screen and (max-width:800px) {
    .left, .right {
       float: none;
       margin: auto;
       height: fit-content;
       height: -moz-fit-content;
       width: 92%;
       overflow: visible;
    }
    #logoDiv {
        width: 41%;
    }
    #mainDiv, #contentDiv {
        width: 94%;
        height: 96%;
        margin: 1% 2%;
    }
    #contentDiv{
        margin-top: 60px;
        height: 90%;
        height: -webkit-fill-available;
    }
    #logoutBtnDiv {
        /* display: inline-block; */
        position: absolute;
        top: 0;
        right: 0;
        padding: 8 8;
        height: auto;
        z-index: 10000; 
    }
}

#forgotPassword {
    padding: 8px;
    color: #FFF;
    background: #000;
    background: #0000;
    border: none;
    border-radius: 8px;
}

#forgotPassword:hover {
    background: #777;
}

#forgotPassword:active {
    background: #777;
}

#forgotPassword:disabled {
    background: #000;
    background: #0000;
    color: #777;
}

.autocomplete {
    position: relative;
    display: inline-block;
}

.autocomplete-items {
    position: absolute;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    height: 300%;
    overflow-y: scroll;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}

.tipDiv {
    width: 82%;
    margin: 2%;
    padding: 8%;
    border-radius: 32px;
    background-color: #c3c7ce;
    background-color: #c3c7cec7;
    border: 2px solid white;
}
