.wrapper.login{
    z-index:3;
    opacity:.85;
    min-width:300px;
    max-width:400px;
    position:fixed;
    padding:0;
    top:20%;
    left:50%;
    transform:translateX(-50%);
}

.wrapper.login .subtitle{
    display:flex;
    justify-content:center;
    text-align:center;
}

.wrapper.login .title{
    display:flex;
    justify-content:center;
    text-align:center;
}

.wrapper.login .logo-role-wrapper{
    opacity:1;
    background:none;
}

.message{
    margin-top:5px;
    font-size:15px;
    min-height:0;
    justify-self:center;
    overflow:hidden;
    opacity:0;
    display:none;
}

.error{
    color:#ff4d4d;
}

.success{
    color:#00ffcc;
}

#loginForm{
    display:grid;
    grid-template-rows:repeat(2, minmax(36px, auto));
    gap:8px;
}

#loginForm input[type="password"]{
    width:100%;
    height:36px;
    min-width:0;
    padding:0 12px;
    background:rgba(0,0,0,.75);
    border:1px solid var(--ui-border-soft);
    color:var(--ui-text);
    font-family:inherit;
    font-size:11px;
    letter-spacing:2px;
    outline:none;
    box-sizing:border-box;
    box-shadow:inset 0 0 10px rgba(80,165,255,.06);
    transition:.25s ease;
}

#loginForm input[type="password"]::placeholder{
    color:rgba(159,201,255,.62);
    letter-spacing:2px;
}

#loginForm input[type="password"]:focus{
    border-color:rgba(110,190,255,.96);
    box-shadow:
        0 0 15px rgba(80,165,255,.26),
        inset 0 0 12px rgba(80,165,255,.12);
}

#loginForm input[type="password"]:hover{
    box-shadow:
        0 0 12px rgba(80,165,255,.24),
        inset 0 0 8px rgba(80,165,255,.1);
}

#loginForm input[type="password"]:-webkit-autofill,
#loginForm input[type="password"]:-webkit-autofill:hover,
#loginForm input[type="password"]:-webkit-autofill:focus{
    -webkit-text-fill-color:var(--ui-text);
    caret-color:var(--ui-text);
    -webkit-box-shadow:0 0 0 1000px rgba(0,0,0,.75) inset;
    transition:background-color 9999s ease-in-out 0s;
}

#loginSubmit{
    width:100%;
    min-height:36px;
}
