

body {
    font-family: 'Open Sans',Helvetica,sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #d1b378;
    color: #202641;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

h1 {
    background-color: #202641;
    height: 135px;
    margin: 0;
    padding: 0;
    color: #d1b378;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10%;
    top: 0;
    position: fixed;
}

p {
    font-size: 16pt;
}

input[type="password"] {
    width: 300px;
    height: 40px;
    font-size: 1.2em;
    padding: 8px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #202641;
    text-align: center;
}

button {
    width: 120px;
    height: 40px;
    font-size: 1.1em;
    background-color: #202641;
    color: #d1b378;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.above-footer {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
}

footer {
    height: 60px;
    color: #d1b378;
    background-color: #202641;
    margin: 0;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-sizing: border-box;
    font-size: 15pt;

}

div.footer-left {
    flex: 1;
    display: flex;
    align-items: center;

    justify-content: flex-start;
}
div.footer-middle {
    flex: 1;
    display: flex;
    align-items: center;

    padding: 1%;
    border-radius: 6px;
    background-color: #d1b378;
    justify-content: center;

}
div.footer-middle:hover {
    background-color: #bd9e62;
}

div.footer-right {
    flex: 1;
    display: flex;
    align-items: center;

    max-width: 30%;
    text-align: right;
    justify-content: flex-end;
}

a {
    color: #d1b378;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}