@font-face {
    font-family: NorseBold;
    src: url(./assets/Norse-Bold.otf);
}

body {
    background-color: #2f2f2f;
}
.mainContent {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 1024px;
    width: 1440px;
    margin: auto;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}



.leftPanel {
    display: flex;
    flex-direction: column;
    flex: 1.2;
    background-image: url("./assets/splash.avif");
    background-position: bottom;
    color: white;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,.5);
    margin: 41% 0 auto;
}
.banner img {
    max-height: 125px;
    margin-top: 12px;
    margin-bottom: 12px;
}
.banner h1 {
    text-transform: uppercase;
    font-family: NorseBold;
    font-size: 6rem;
    margin: 0px;
}

.leftPanel p { 
    align-self: center;
    font-size: 0.8rem;
}

.leftPanel a {
    color: white;
}



.rightPanel {
    flex: 2;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: content-box;
}
.rightPanel .section {
    box-sizing: content-box;
    padding: 10px 200px 20px 50px;
}

.mainText {
    font-size: 1.5rem;
    font-weight: bold;
}
.topSpacing {
    line-height: 5rem;
}
.emphasis {
    background-color: white;
    box-shadow: 0px 2px 5px gray;
}
.emphasis h3 {
    margin-bottom: 0px;
}
fieldset {
    border: none;
    padding: 0px;
    margin-bottom: 20px;
    display: grid;
    grid: auto-flow / 1fr 1fr;
    column-gap: 80px;
}
fieldset label {
    margin-top: 25px;
}
fieldset input {
    height: 30px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 18px;
}
fieldset input:focus {
    outline: 1px solid #1d4ed8;
}
fieldset input:invalid:not(:placeholder-shown) {
    outline: 1px solid #b91c1c;
}
div > button {
    margin-top: 20px;
}
form button {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    background-color: #596D48;
    padding: 15px 70px 15px 70px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
}
.signIn {
    color: #7a8a6d;
    font-weight: bold;
}