:root{
    --login-border: #343c40;
}

#body-wrapper{
    max-width: var(--laptop-max-width);
    min-width: 1394px;
    width: 100%;
}


header{
    position: sticky;
    top: 0;
    /* left: 0; */
    z-index: 2;
}

#header-wrapper{
    display: flex;
    justify-content: space-between;
    background-color: #101517;
    #logo{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 0rem;
        height: 30px;
        min-width: var(--aside-width);
        width: var(--aside-width);
    }
    #top-nav{
        /* position: sticky; */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        #login-button-wrapper{
            padding: 0.5rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
}

#main-wrapper{
    display: flex;
    justify-content: center;
}

#login-main{
    padding: 3rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 620px; */
    width: 95%;
    filter: drop-shadow(0 0 0.75rem rgb(5, 5, 5));
    #login-wrapper{
        /* padding-left: 170px; */
        width: fit-content;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    #cms-info, #login-main-content{
        /* opacity: 0.5; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #2f323978;
        /* height: 67%; */
        min-height: 700px;
    }
    #cms-info{
        align-items: center;
        width: 50%;
        background-color: #101517;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        /* border-left: 8px solid #31333a; */
        border-left: 8px solid var(--login-border);
        border-bottom: 8px solid var(--login-border);
        border-top: 8px solid var(--login-border);
        .info{
            width: 66%;
            text-align: center;
            font-size: 28px;
        }
    }
    #login-main-content{
        width: 70%;
        border-radius: 25px;
        /* border-bottom-right-radius: 25px; */
        border: 8px solid var(--login-border);
        /* border-bottom: 8px solid var(--login-border);
        border-top: 8px solid var(--login-border); */
        #login-title{
            display: flex;
            flex-direction: column;
            gap: 10px;
            h1{
                text-align: center;
                font-size: 32px;
            }
            h2{
                font-size: 20px;
            }
        }
        #login-input{
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 2.4rem;
            width: 250px;

            #login-details{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                width: 250px;

                #login-user, #login-password, #login-retype-password{
                    width: 250px;
                    display: flex;
                    flex-direction: column;
                    gap: 0.5rem;
                }
                /* #login-user-input, #login-password-input, #login-retype-password-input
                {
                    padding: 0.2rem;
                    color: black;
                    display: flex;
                    flex-direction: column;
                    font-weight: 600;
                    width: 15rem;
                } */
                .login-inputs{
                    padding: 0.2rem;
                    color: black;
                    display: flex;
                    flex-direction: column;
                    font-weight: 600;
                    width: 15rem;
                }
            }
            #login-buttons{
                display: flex;
                flex-direction: column;
                gap: 1rem;
                & button{
                    background-color: #842969;
                    width: 250px;
                    height: 1.5rem;
                    border-radius: 5px;
                    &[type="submit"]{
                        font-weight: 600;
                        /* color: #909296; */
                        color: #b1b7c3;
                        &:hover{
                            color: white;
                        }
                    }
                }
            }
        }
        .login-error{
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 15rem;
            height: 2rem;
            bottom: 4.2rem;
            left: 0.3rem;
            background-color: #b31313c0;
            text-align: center;
        }
    }
}


@media(min-width: 760px){
}

@media(min-width: 1584px){
}

@media(max-width: 760px){
}