@font-face {
    font-family: 'Open Sans';
    src: url("./OpenSans-VariableFont_wdth,wght.ttf") format("truetype-variations");
    font-weight: 125 950;
    font-stretch: 75% 125%;
    font-style: normal;
}

html {
    height: 100%;
    background-color: #FFFFFF;
}

body {
    margin: 0;
    height: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    color: var(--primary-colour);
}

.navigation-bar {
    box-shadow: 0 4px 37px -1px rgba(130,102,86,0.17);
}


.navigation {
    display: grid;
    grid-template-columns: 1fr 2fr;
    max-width: 1176px;
    margin: 0 auto;
}

.version {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: #c0392b;
    padding: .4rem;
    color: #ffffff;
    font-weight: bold;
}

.failure {
    background-color: #c0392b;
    padding: 1rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 1em;
}

.panel {
    min-width: 30%;
    max-width: 1084px;
    display: flex;
    flex-direction: column;
    margin: 30px auto 189px auto;
}

img.logo {
    max-height: 73px;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 120%;
}

input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--primary-colour);
    border-radius: 0px;
    padding: 10px;
    margin-bottom: 10px;
}
input::placeholder {
    color: rgba(24, 49, 90, 0.70);
    font-weight: 400;
}

input:focus-visible {
    border: 1px solid var(--primary-colour);
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

button {
    display: inline-flex;
    align-items: center;
    height: 3.2rem;
    box-sizing: border-box;
    padding: .5rem 2rem;
    font-size: 1.125rem;
    background-color: var(--primary-colour);
    color: #ffffff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    pointer-events: auto;
    font-weight: 700;
}

.not-you {
    text-align: center;
}

/*Footer*/

.toggle-checkbox {
    display: none;
}

.footer-collapsible {
    width: 100%;
    background: #f1f1f1;
    color: var(--primary-colour);
    text-align: left;
    padding-top: 10px;
}

.footer-content {
    display: block;
    p {
        margin-left: 10px;
    }
    li {
        padding-right: 100px;
    }
}

.toggle-checkbox:checked + .footer-toggle + .footer-content {
    display: none;
}

.footer-toggle {
    cursor: pointer;
    color: #007bff;
    display: block;
    margin-left: 10px;
}
