@font-face {
    font-family: "Norse-Bold";
    src: url("Norse-Bold.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    line-height: 0;
}

:root {
    --height-band: 7rem;
    --form-widths: 500px;
    --font-size1: 20px;
}

body {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.content {
    display: flex;
    flex-direction: row;
}

.sidebar {
    background-image: url("halie-west-unsplash.jpg");
    /* min-width: 300px; */
    width: clamp(300px, 20vw, 24vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.5em;
}

.grey-band {
    height: clamp(200px, 20vh);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20%;
    width: 100%;
    position: relative;
}

.grey-band::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.3;
}

.grey-band img {
    height: var(--height-band);
    width: auto;
    fill: white;
    z-index: 1;
}

.grey-band span {
    font-family: "Norse-Bold",sans-serif;
    color: white;
    font-size: calc(var(--height-band)*0.75);
    z-index: 1;
    margin-top: 13px;
}

.sidebar span, .sidebar span a {
    color: white;
    padding-bottom: 10px;
}

.sidebar span a {
    color: white;
    padding-bottom: 10px;
    font-size: 19px;
    background-color: rgba(135,135,135,0.8);
}

.body-ctn {
    /* width: 100vw; */
    padding: 30px 0;
    background-color: rgb(250, 250, 250);
}

.top-body {
    /* 60 characters */
    max-width: 60ch;
    margin-top: 100px;
    font-weight: bold;
    padding-left: 30px;
    font-size: var(--font-size1);
}

.form-input {
    margin-top: 60px;
    padding: 20px 30px;
    margin-bottom: 50px;
    background-color: #ffffff;
    /* min-width: 100%; */
    box-shadow: 0 10px 10px 0px rgb(219, 218, 218);
}

.formFieldset {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    max-width: var(--form-widths);
    border: 0;
}

.formFieldset legend {
    font-size: var(--font-size1);
    font-weight: bold;
}

.leftForm, .rightForm {
    padding: 10px;
}

.input-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    margin: 0;
    padding-top: 10px;
    margin-bottom: 20px;
}

input, label {
    width: 200px;
    font-family: "open sans";
    color: rgb(79, 76, 76);
}

.input-item input {
    border-radius: 4px;
    border: 1px solid #E5E7EB;
    height: 1.8em;
}

input:focus {
    border-color: lightblue;
}

#passwordMismatch {
    position: relative;
}

.footer-body {
    padding-left: 30px;
}

.footer-body button {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid lightgray;
    background-color: green;
    color: white;
    font-weight: bold;
    font-size: calc(var(--font-size1) - 2px);
}

.footer-body > button:hover {
    cursor: pointer;
}

.footer-body p {
    font-size: calc(var(--font-size1) - 2px);
}

.footer-body p a {
    text-decoration: None;
    color: darkgreen;
    font-weight: bold;
}