* {
    padding: 0;
    margin: 0;
    font-family: Helvetica, sans-serif;
    box-sizing: border-box;
}

.pattern_layer {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url(/custom/bg-tile.png);
    background-position: top left;
    background-repeat: repeat;
}

.alpha_layer {
    background-color: hsl(120 100% 100% / 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

#login_container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 50vh;
}

#login_wrap {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

#logo_container {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img.lt {
    width: 450px;
    aspect-ratio: 4 / 1;
    margin-top: -25%;
    z-index: 1000;
}

.login_fields {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem;
    border: 2px solid black;
    border-radius: 15px;
}

.login_fields>fieldset {
    border: none;
}

.form-control {
    font-size: 18px;
    padding: 0.25rem 0.5rem;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
}

.form-control:focus {
    outline: none;
    border: 2px solid darkblue;
    border-radius: 8px;
    box-shadow: 3px 2px 2px lightgrey;
}

.button {
    margin-top: 0.5rem;
    border: solid 1px #AAA;
}

.button:hover {
    background: #4A4C59;
    color: #fff;
    cursor: pointer;
}

#error_wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 10vh;
}

.login_fields_footer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 14px;
    height: 40vh;
    padding-bottom: 1rem;
}

#error_wrap, .login_fields_footer, .login_fields_footer .link {
    color: #fff;
}

.error
{
	color: #f00;
}

.login_fields_footer .link {
    text-decoration: underline;
}