.lightmode #header {
    background-color: #03080b;
    box-shadow: 0 0 5px #777;
}

.darkmode #header {
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
}

#header {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    box-shadow: initial;
    border-radius: 0px;
    padding: 0 32px;
    z-index: 2147483641;
}

.header-behind {
    height: 0px;
}

#left-logo,
#header-logo,
#header-image {
    width: fit-content;
    height: 80%;
    padding: 0;
}

#header-image img {
    height: 60px;
}

#header a[href*="/login.php"] {
    transition: 0s;
}

.lightmode #header .header-btn {
    border: 2px solid #71CF25;
    background: transparent;
    color: #fff;
}

.lightmode #header .header-btn:hover {
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.1);
}

.darkmode #header .header-btn {
    background: linear-gradient(180deg,#3EBC61,#71CF25);
    color: #03080b;
    box-shadow: 1px 1px 3px #aaa;
}

.darkmode #header .header-btn:hover {
    background: linear-gradient(180deg,#4BC96E,#7EDC32);
    color: #fff;
}

#header .header-btn {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 220px;
    border-radius: 12px;
    font-size: 18px;
    margin: 12px 2px 12px 11px;
}

#errors {
    display: flex;
    align-items: center;
    justify-items: center;
    padding: 24px 48px 0px 48px;
    background-color: #fff;
}

#errors .errors-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px;
    border-radius: 4px;
    border: 1px solid #b94a48;
    background: #f2dede;
    color: #3c0d0e;
    font-size: 14px;
    font-weight: 600;
}

#errors .errors-wrapper span.material-symbols-outlined {
    display: inline-block;
    color: #b94a48;
    margin: 0 6px 0 0;
}

@media screen and (max-width: 768px) {
    
    #header {
        height: 80px;
    }

    #header-image img {
        height: 40px;
    }

    #header .header-btn {
        width: 160px;
        height: 36px;
        font-size: 1em;
    }
}

@media screen and (max-width: 600px) {
    #header {
        position: fixed;
    }

    .header-behind {
        height: 80px;
    }
}

@media screen and (max-width: 450px) {
    
    #header {
        padding: 0 16px;
    }

    #errors {
        padding: 16px 16px 0 16px;
    }

    #header-image img {
        height: 28px;
    }
}