body {
    margin: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #001180;
}

button {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1em;
    box-sizing: content-box;
}

.logo {
    height: 130px;
}

.cancel-button {
    background-color: #f9f9f9;
    border: 1px solid #001180;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #001180;
    font-weight: 600;
}

.cancel-button:disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

.cancel-button:hover {
    background-color: #ffffff;
}

.main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-container {
    width: 80%;
    max-width: 900px;
    height: auto;
    min-height: 240px;
    padding: 20px;
    background-color: #F9F9FF;
    border-radius: 8px;
    color: #001180;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.primary-button {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #001180;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #001180;
    font-weight: 600;
    width: 256px;
    text-align: center;
    cursor: pointer;
}

.primary-button.disabled,
.primary-button:disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

.primary-button:hover {
    background-color: #f9f9f9;
}

.username-input {
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #001180;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #001180;
    font-weight: 600;
    width: 256px;
    text-align: center;
    box-sizing: content-box;
    font-size: 1em;
}

.invalid-input {
    border: 1px solid darkred;
    color: darkred;
}


.text {
    color: black;
}

.text.bold {
    font-weight: bold;
}

.title {
    width: 100%;
    display: left;
}

.grid-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    grid-auto-rows: auto;
    grid-gap: 5px;
}

.grid-item {
    padding: 8px;
    width: 100%;
}

.grid-item.button {
    grid-column: 1 / 2;
}

.grid-item.explanatory {
    grid-column: 2 / 3;
    padding-right: 10px;
}

.grid-item.large {
    grid-column: 3 / 4; /* Span from the third column line to the fourth */
    grid-row: 1 / 6;
    place-self: end;
}

.grid-item.large img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    padding-left: 20px
}

.footer {
    background-color: #001180;
    text-align: center;
    padding: 10px;
    height: 150px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.footer .textbig {
    color: #ffffff;
    text-decoration: none;
    background-color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 8px;
    width: 100%;
}

.footer .textbig a,
.footer .textbig a:hover,
.footer .textbig a:visited,
.footer .textbig a:active {
    color: #ffffff;
    text-decoration: none;
}

.footer-column {
    display: block;
    box-shadow: none;
    background-color: inherit;
    width: 30%;
}

.footer .text {
    color: #ffffff;
    background-color: inherit;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}


.label {

}

.label-invalid {
    color: darkred;
}
