﻿body {
    overflow: hidden;
}

.textVerticallyCentered {
    height: fit-content;
    vertical-align: middle;
    line-height: 100%;
}

#SecurityLayer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#SecurityField {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 400px;
    background: rgba(255,255,255, 0.95);
    border: 1px solid;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.25));
    /*box-shadow: rgba(0,0,0,0.15) 5px 5px;*/
}
#LogoLayer {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    float: left;
    width: 100%;
    height: fit-content;
    grid-template-columns: auto auto;
    background-color: forestgreen;

    div:first-child {
        width: 20px;
        img {
            margin: 10px;
        }
    }
}
#DescriptionLayer {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 20pt;
    font-weight: 500;
    color: white;
}
#Controls {
    display: grid;
    position: absolute;
    text-align: center;
    min-width: fit-content;
    height: fit-content;
    grid-template-rows: auto auto;
    
    #UserLayer,
    #PasswordLayer {
        position: relative;
        left: -30px;
        text-align: right;
        min-width: 150px;
        max-width: 250px;
        height: fit-content;
        max-height: fit-content;
        margin-bottom: 5px;
    }
}
#UserLayer {
}
#UserId {
}
#PasswordLayer {
}
#UserPassword {
}
#ButtonLayer {
}
#SubmitButton {
    position: relative;
    top: 0;
}
#TitleLayer {
    position: absolute;
    bottom: 0;
    left: 0;
    float: left;
    width: 100%;
    height: fit-content;
    margin: 10px;
}
