﻿#loginform {
    z-index: 2;
}

.loginbackdrop {
    /*background-image: url("core/img/globalback.jpg");
    background-size: cover;
    background-repeat: no-repeat;*/
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.halfformright-slantright {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    background-color: rgb(250, 250, 250);
    width: 25vw;
    height: 100%;
    z-index: 5;
}

.halfformright-slantright:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0%;
    width: 80%;
    height: 100%;
    background: rgb(250,250,250);

    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-10deg);
    -ms-transform: skew(-10deg);
    transform: skew(-10deg);
    z-index: -1;
}

.halfformcontent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20vh;
    margin-right: 5vw;
}

.panelBoxold {
    border-left: .25px solid rgb(83,83,83);
    border-right: .25px solid rgb(83,83,83);
    border-bottom: .25px solid rgb(83,83,83);
    border-radius: 5px;
    height: 50vh;
    width: 20vw;
    min-width: 320px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 2px 15px 2px rgba(39, 0, 66, 0.72);
}

.panelBox {
    height: 30vh;
    width: 35vw;
    min-width: 360px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.tightbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
    width: 15vw;
    min-width: 300px;
}

.logintitle {
    width: 85%;
    align-self: center;
    font-size: max(100px, 10vw);
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 200px;
    
}

.loginouterpanel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.loginInput {
    width: 100%;
    height: 2vh;
    text-align: center;
    margin-top: 5px;
    height: 25px;
    transition: width linear 0.5s;
    color: rgb(83,83,83);
    border: .25px solid rgb(83,83,83) !important;
    border-radius: 4px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.loginstretch {
    width: 100vw;
}

#loginWelcome {
    position: absolute;
    width: 400px;
    height: 100px;
    border: 2px solid black;
    top: 40%;
    left: calc(50% - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#welcometext {
    font-family: Brutel-Thin;
    letter-spacing: 2px;
    font-size: 20px;
}

#nametag {
    font-family: Brutel-Medium;
    font-size: 30px;
    letter-spacing: 3px;
}

.hidden {
    display: none !important;
}

.noshow {
    opacity: 0;
    transition: opacity linear 0.5s;
}

.show {
    opacity: 1 !important;
}

.nagreminder {
    width: 100%;
    text-align: center;
    color: rgb(58, 0, 92);
    font-family: Brutel-Thin;
    font-size: 15px;
}
.nagshow {
    color: rgb(255,42,85) !important;
}