﻿
.LoginView {
    position: fixed;
    width: 60svw;
    height: 100svh;
    left:50%;
    bottom:5%;
    transform: translate(-50%, 0%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    row-gap: 12px;
    z-index: var(--ViewDepth);
}

.LoginView input {
    width:100%;
}

.LoginView div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
    width: 100%;
}

.LoginView div button {

}

.LoginView div button:first-child {
    flex-grow: 0.3;
    background-color: var(--ThemeColorSecondary);
}

.LoginView div button:last-child {
    flex-grow: 0.7;
}
