/* Login Box */
.box {
    background: var(--primary);
    padding: 20px 15px !important;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0px 3px 21px 0px var(--boxshadow);
}

.form {
    color: var(--hover-fff);
}

.boxTitle {
    font-weight: bold;
}

.boxTitle i {
    margin-right: 5px;
}

.inputContainer {
    display: flex;
    border-radius: 6px;
    background: var(--bc-secondary);
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    padding: 0 15px;
    min-height: 45px;
    margin-bottom: 7px;
}

.inputContainer input,
.inputContainer input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 12px;
    margin-left: 8px;
    padding-right: 8px;
    font-weight: 500;
    color: var(--font-1);
    background: var(--bc-secondary);
}

input::placeholder {
    color: var(--font-1);
}

.submitBtn {
    margin-top: 15px;
    border-radius: 6px;
    background-image: -moz-linear-gradient(90deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    align-items: center;
    color: #FFF;
    font-weight: bold;
    font-size: 13px;
    border: none;
    cursor: pointer;
}

.submitBtn:hover {
    background: linear-gradient(90deg, rgb(41, 196, 139) 32%, rgb(28, 212, 59) 100%);
}

/* Devider & Other login methods */
.devider {
    width: 100%;
    height: 20px;
    border-bottom: 1px solid var(--hover-fff);
    text-align: center;
    margin: 5px 0 20px;

}

.devider span {
    font-size: 12px;
    background: var(--primary);
    padding: 0 5px;
    color: var(--hover-fff);
    position: relative;
    top: 5px;
}

/* Other Login Methods Button*/
.loginBtn {
    border-style: solid;
    border-width: 1px;
    border-radius: 6px;
    border-color: var(--border);
    background: var(--btn1);
    width: 100%;
    color: var(--font-1);
    font-size: 12px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-top: 5px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s ease;
}

.loginBtnIcon {
    position: absolute;
    left: 15px;
}

.loginBtn:hover {
    background: rgba(223, 230, 242, 0.701);
}

.loginLinks {
    margin-top: 25px;
    color: black;
    font-weight: bold;
    font-size: 11px;
}

.loginLinks p {
    margin-bottom: 0;
}


/* Leaderboard box */
.boxBtn {
    border-style: solid;
    border-width: 1px;
    border-color: var(--border);
    border-radius: 6px;
    background: var(--bc-secondary);
    width: 71px;
    height: 32px;
    font-size: 12px;
    font-weight: bold;
    margin: 0 2px;
    transition: all 0.1s ease;
}

.boxBtnActive,
.boxBtn:hover {
    background-image: -moz-linear-gradient(0deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    color: #FFF;
}

.lbTitle {
    font-weight: bolder;
    font-size: 10px;
    margin-top: 15px;
    padding: 0 20px;
}

.lbElement {
    font-weight: 500;
    font-size: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--border);
    border-radius: 6px;
    background: var(--bc-secondary);
    height: 40px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.pos {
    color: var(--hover-fff);
}

.lbEarned {
    font-weight: bold;
}

/* Graph Box */
.graph {
    margin: 15px 0 25px;
}