﻿


/*               */
/* INPUT STYLING */
/*               */

.inputBoxLogin {
    height: 40px;
    border: 1px solid;
    border-color: rgba(68, 68, 68, 1);
    border-radius: 10px;
    background-color: transparent;
    color: white;
}

    .inputBoxLogin::placeholder {
        color: rgba(214, 214, 214, 1);
    }

    .inputBoxLogin:hover {
        border-color: #B524FF;
    }


@media screen and (max-width: 390px) {
    .inputBoxLogin {
        min-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .inputBoxLogin {
        max-width: 350px;
    }
}


.inputLabelLogin {
    left: 0px;
    text-align: left;
    padding: 0px;
    margin: 0px;
    color: rgba(153, 153, 153, 1);
}

@media screen and (max-width: 390px) {
    .inputLabelLogin {
        min-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .inputLabelLogin {
        max-width: 350px;
    }
}

.inputError {
    height: 17px;
    color: red;
    font-size: 9px;
    text-align: start;
}

@media screen and (max-width: 390px) {
    .inputError {
        min-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .inputError {
        max-width: 350px;
    }
}

.inputSuccess {
    height: 17px;
    color: darkgreen;
    font-size: 9px;
    text-align: start;
}

@media screen and (max-width: 390px) {
    .inputSuccess {
        min-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .inputSuccess {
        max-width: 350px;
    }
}

.inputCheckbox {
    position: relative;
    display: inline-block;
    height: 17px;
    margin: 2px 4px 0px 0px;
}

.rememberMeCheckbox {
    position: relative;
    display: inline-block;
    height: 17px;
    margin: 0px;
    padding: 0px;
}

@media screen and (max-width: 390px) {
    .rememberMeCheckbox {
        left: 5px;
        top: 0px;
    }
}


@media screen and (min-width: 390px) {
    .rememberMeCheckbox {
        top: 2px;
    }
}


.rememberMeLabel {
    position: relative;
    width: 110px;
    display: inline-block;
    height: 17px;
    margin: 0px;
    padding: 0px;
    font-size: 12px;
    color: grey;
}

@media screen and (max-width: 390px) {
    .rememberMeLabel {
        left: 14px;
    }
}


@media screen and (min-width: 390px) {
    .rememberMeLabel {
        left: 7px;
    }
}



.inputBox {
    height: 40px;
    border: 1px solid;
    border-radius: 10px;
    background-color: transparent;
    color: black;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Open Sans';
    padding-left: 11px;
}

    .inputBox::placeholder {
        color: rgba(214, 214, 214, 1);
    }

    .inputBox:hover {
        border: 2px solid #B524FF;
    }

    .inputBox:focus {
        border-color: #B524FF;
    }


@media screen and (max-width: 500px) {
    .inputBox {
        max-width: 330px;
    }
}

@media screen and (min-width: 500px) and (max-width: 900px) {
    .inputBox {
        min-width: 300px;
        max-width: 500px;
    }
}

@media screen and (min-width: 900px) and (max-width: 1135px) {
    .inputBox {
        width: 500px;
    }
}


@media screen and (min-width: 1135px) {
    .inputBox {
        width: 330px;
    }
}

.inputLabel {
    font-family: 'Open Sans';
    left: 0px;
    text-align: left;
    padding: 0px;
    margin: 0px;
    color: rgba(0, 0, 0, 1);
    font-weight: 700;
    font-size: 14px;
    line-height: 19.07px;
}

@media screen and (max-width: 390px) {
    .inputLabel {
        min-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .inputLabel {
        max-width: 350px;
    }
}

select {
    height: 40px;
    border: 1px solid;
    border-radius: 10px;
    background-color: transparent;
    color: black;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Open Sans';
    padding-left: 11px;
}

    select::placeholder {
        color: rgba(214, 214, 214, 1);
    }

    select:hover {
        border: 2px solid #B524FF;
    }

    select:focus {
        border-color: #B524FF;
    }

@media screen and (max-width: 500px) {
    select {
        max-width: 330px;
    }
}

@media screen and (min-width: 500px) and (max-width: 900px) {
    select {
        min-width: 300px;
        max-width: 500px;
    }
}

@media screen and (min-width: 900px) and (max-width: 1135px) {
    select {
        width: 500px;
    }
}


@media screen and (min-width: 1135px) {
    select {
        width: 330px;
    }
}

/* For Webkit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}
/*                 */
/* BUTTON STYLING  */
/*                 */

.button {
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    min-height: 40px;
    max-height: fit-content;
    padding: 1rem;
    padding: .3rem 1rem;
    box-shadow: none;
    border-radius: 10px;
    border: solid 0px transparent;
    color: white;
    background: rgba(181, 36, 255, 1);
    background-color: rgba(181, 36, 255, 1);
}

    .button:hover, .button:focus {
        background: linear-gradient(180deg, rgba(87, 26, 37, 0) 0%, rgba(87, 26, 37, 0.2) 100%), rgba(151, 16, 224, 1); /* Darkened color for hover */
        background-blend-mode: plus-darker, normal;
    }

    .button:active {
        background: linear-gradient(180deg, rgba(87, 26, 37, 0) 0%, rgba(87, 26, 37, 0.2) 100%), rgba(151, 16, 224, 1); /* Darkened color for active */
        background-blend-mode: plus-darker, normal;
    }

@media screen and (max-width: 390px) {
    .button {
        max-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .button {
        max-width: 350px;
    }
}


@media screen and (max-width: 711px) {
    .button {
        font-size: 11px;
    }
}

@media screen and (min-width: 711px) {
    .button {
        font-size: 14px;
    }
}

.button-white {
    font-family: Open Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    min-height: 40px;
    max-height: fit-content;
    padding: 1rem;
    padding: .3rem 1rem;
    box-shadow: none;
    border-radius: 10px;
    border: solid 1px #B524FF;
    color: black;
    background-color: white;
}

    .button-white:hover, .button-white:active, .button-white:focus {
        border: solid 2px #B524FF;
    }

@media screen and (max-width: 390px) {
    .button-white {
        max-width: 250px;
    }
}


@media screen and (min-width: 390px) {
    .button-white {
        max-width: 350px;
    }
}


@media screen and (max-width: 711px) {
    .button-white {
        font-size: 11px;
    }
}

@media screen and (min-width: 711px) {
    .button-white {
        font-size: 14px;
    }
}

.small-button {
    font-family: Open Sans;
    font-size: 10px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    height: 22px;
    padding: .1rem 1rem .3rem 1rem;
    box-shadow: none;
    border-radius: 10px;
    border: solid 0px transparent;
    color: white;
    background: rgba(181, 36, 255, 1);
    background-color: rgba(181, 36, 255, 1);
}

    .small-button:hover, .small-button:active, .small-white:focus {
        background: linear-gradient(180deg, rgba(87, 26, 37, 0) 0%, rgba(87, 26, 37, 0.2) 100%), rgba(151, 16, 224, 1); 
        background-blend-mode: plus-darker, normal;
    }

.small-button-white {
    font-family: Open Sans;
    font-size: 10px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    height: 22px;
    padding: 0rem 1rem .3rem 1rem;
    box-shadow: none;
    border-radius: 10px;
    border: solid 0px transparent;
    border: solid 1px #B524FF;
    color: black;
    background-color: white;
}

    .small-button-white:hover, .small-button-white:active, .small-white-button:focus {
        border: solid 2px #B524FF;
    }

.menu-button-open {
    z-index: 3;
    color: black;
    margin-left: 7px;
}

.menu-button-close {
    z-index: 3;
    color: white;
    margin-left: 7px;
}

#menuButton {
    position: relative;
    font-size: 17px;
    top: 21px;
    left: 27px;
}

#notificationButton {
    position: relative;
    top: 17px;
    right: 27px;
}


#menuButton:hover {
    color: #B524FF;
}


/*                   */
/* SIDE MENU STYLING */
/*                   */

#menuLinks {
    width: 100%;
    padding: 0 0 0 0;
    margin-bottom: 1em;
    font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
    background-color: transparent;
    z-index: 7;
    overflow: hidden; /* hides both horizontal and vertical scrollbars */
}

    #menuLinks ul {
        list-style: none;
        margin: 0;
        padding: 0;
        border: none;
    }

    #menuLinks li {
        margin: 0;
    }

        #menuLinks li a {
            display: block;
            padding: 5px 5px 5px 0.5em;
            background-color: transparent;
            text-decoration: none;
            width: 100%;
        }

        html > body #menuLinks li a {
            width: auto;
        }

            #menuLinks li a:hover {
                color: #B524FF;
            }

#menuItemHeaders a {
    padding: 5px 5px 5px 0 !important;
    color: white;
    font-weight: 500;
    line-height: 21.79px;
}


#menuItems a {
    padding-left: 22px !important;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-logoff {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}


    .sidebar-logoff:hover {
        color: #B524FF;
    }


.sidebar-logoff-text {
    margin: 0;
    margin-left: 3px;
    padding: 0;
    display: inline-block;
}
