﻿body {
    height: 100vh; /* 100% of the viewport height */
    margin: 0; /* Remove default body margin */
    display: flex;
    flex-direction: column;
}

#login-container {
    align-self: center;
    margin-top: 25vh;
    width: 40em;
    aspect-ratio: 16 / 9; /* Sets the aspect ratio */
    border: 1px solid #00000010;
    border-radius: 1em;
    box-shadow: 2px 2px 5px 0 gray;
    display: flex;
    flex-direction: column;
    justify-items: flex-start;
}

#logo-image {
    width: 80%;
    margin: 2em auto 0 auto
}

#login-container form {
    margin: auto;
    margin-top: 2em;
    display: grid;
    width: 80%;
    grid-template-columns: 1fr 2fr;
    grid-row-gap: 0.5em;
}

    #login-container form label {
        text-align: end;
    }

        #login-container form label::after {
            content: "\00a0";
        }

#login-button {
    grid-column: 1 / span 2;
    margin-top: 2em;
    display: flex;
    justify-content: center;
}

#login-validation {
    grid-column: 1 / span 2;
    display: flex;
    justify-content: center;
}

#login-button > * {
    margin: auto;
}

#version-info {
    margin: auto;
    bottom: 0;
}
