body {
    display: grid;
    place-content: center;
    height: 100vh;
    margin: 0;
}

div.LoginContainer {
    padding: 2rem 3rem;
    width: auto;
    height: auto;
    border-radius: 0.25rem;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: 0 0 5px 1px lightgrey;
}

img.LoginLogo {
    width: auto;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
}

label {
    font-family: 'Arial';
    top: 0;
    left: 0;
    pointer-events: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75rem;
    color: gray;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.TextBox {
    height: 1.75rem;
    width: 12rem;
    font-size: 15px;
    color: black;
    padding: 0 4px;
    background: white;
    border-radius: 0.25rem;
    border: 0.1rem solid lightgray;
    box-shadow: 0 0 5px 1px lightgrey;
}

.TextBox:focus {
    outline: none;
    border: 0.1rem solid lightblue;
}

.TextBox:valid {
    border: 0.1rem solid lightblue;
}

div.SubmitButton {
    display: block;
    text-align: center;
}

#submit-button {
    padding: 0.5rem 1rem;
    background-color: white;
    font-weight: bold;
    border: 0.1rem solid lightgray;
    border-radius: 0.25rem;
    box-shadow: 0 0 5px 1px lightgrey;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin: 0;
    color: gray;
}

#submit-button:focus {
    background: lightblue;
    outline: none;
    color: white;
    border: 0.1rem solid white;
    box-shadow: 0 0 5px 1px white;
}

.InputGroup {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.InputGroupContainer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}