body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("images/Group 27.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: -100px 0px;
    background-color: #fff;
    overflow: hidden;
}

.login {
    margin-top: 2em;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-content: center;
}

.login .panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.login .logo {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.login .logo img {
    width: 150px;
    height: auto;
    margin: 20px 50px;
    
}

.login-container {
    width: 350px;
    height: auto;
    padding: 5px 30px;
    margin-top: 50px;
    /*
    border: 1px solid #fafafc;
    border-radius: 5px;
    box-shadow: -2px 2px 10px rgb(0 0 0 / 10%);
    */
}

.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*justify-content: space-around;*/
    height: 100%;
}

.info > label, .input-wrap input {
    display: flex;
    font-size: 16px;
    width: 100%;
}

.input-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #062461;
    padding: 8px 5px;
    margin-bottom: 10px;
}

.input-wrap hr {
    display: inline-block;
    height: 20px;
    width: 2px;
    margin: 0px 10px;
    background-color: #062461;
}

input:not(:[type="checkbox"]) {
    width: 97%;
    margin-bottom: 10px;
}


button {
    display: flex;
    justify-content: center;
    background-color: #000;
    border-radius: 10px;
    border: none;
    outline: none;
    margin: 30px 0px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: white;
    width: 100%;
    cursor: pointer;
}

select, input {
    border: none;
    outline: none;
}

.info > span {
    width: 100%;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info > span label{
    display:flex;
    align-items: center;
}

u {
    cursor: pointer;
    color: #f4882b;
}

.selected * {
    margin: 0;
    box-sizing: border-box;
}

.arrow {
    color: #f4882b;
    margin-top: -25px;
    margin-left: -25px;
    position: absolute;
    font-size: 25px;
    cursor: pointer;
}

nav.bottom-link {
    width: 100%;
    display: flex;
    flex-direction: column;

}

nav.bottom-link a{
    color: #000;
    margin-bottom: 10px;
}

i.icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.icon_user{background-image:url('icons/Path 1.png');}
.icon_lock{background-image:url('icons/Path 3.png');}
.icon_arrow {
    background-image: url('icons/Group 1.png');
    width: 10px !important;
    height: 10px !important;
    margin-left: 10px;
}

@media only screen and (max-width: 600px) {

    .panel {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo {
        width: 100%;
    }

    .login-container {
        width: 80%;
    }
}

.gridBox2-wrap {
    display: grid;
    grid-template-columns: 385px Calc(100% - 385px);
    width: 100%;
    overflow: hidden;
}

.gridBox2-wrap .gridLeft {
    
}

.gridBox2-wrap > .gridRight {
    /*display: grid;
    grid-template-columns: auto auto auto;*/
}

.gridBox2-wrap .chart {
    display: inline-block;
    width: 350px;
    height: 250px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    margin: 0px 10px 10px 0px;
}

