@font-face {
    font-family: Norse Bold;
    src: url('Norsebold.woff2') format(woff2);
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #fff;
    --secondary-color: #596D48;
    --primary-text: #000;
    --secondary-text: rgb(100, 100, 100);
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 0;
    background-color: var(--primary-color);
    font-family: Inter, sans-serif;
}

/* .section {
    position: relative;
} */

/* Right Section */
.right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.backgroud {
    height: 100vh;
}

.odin-logo {
    width: 100%;
    position: absolute;
    display: flex;
    flex-direction: row;
    background-color: rgb(0, 0, 0, 50%);
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    top: 250px;
}

.logo {
    width: 15%;
}

h1 {
    margin: 0;
    color: var(--primary-color);
    font-family: Norse Bold;
    font-size: 125px;
}

.credit {
    color: var(--primary-color);
    position: absolute;
    bottom: 8px;
    font-weight: 300;
}

.credit a:link {
    color: var(--primary-color);
}
.credit a:visited {
    color: var(--primary-color);
}
.credit a:hover {
    color: var(--secondary-text);
}
.credit a:active {
    color: var(--primary-color);
}


/* Left Section */
.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

h2 {
    font-weight: 600;
}

.top, .bottom {
    margin-left: 4em;
}

.top {
    width: 700px;
    margin-bottom: 48px;
}

.top h2:first-child {
    margin-bottom: 32px;
}

.middle {
    padding-left: 4em;
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 30%);
    margin-bottom: 48px;
}

.name, .contact, .password {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 56px;
    width: 600px;
    margin-bottom: 32px;
    gap: 4px;
}

input {
    width: 250px;
    height: 32px;
    border-radius: 4px;
    border: solid #E5E7EB 1px;
    padding-left: 10px;
    font-size: medium;
}

input:focus {
    outline: solid blue 2px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 30%);
}

input:invalid {
    outline: solid red 2px;
}

legend {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--secondary-text);
}

button {
    padding: 16px 64px;
    border: 0;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

button:hover {
    background-color: #455537;
}

.login {
    font-weight: 600;
}

.login a:link {
    text-decoration: none;
    color: var(--secondary-color);
}
.login a:visited {
    text-decoration: none;
    color: var(--secondary-color);
}
.login a:hover {
    text-decoration: none;
    color: #1e2518;
}
.login a:active {
    text-decoration: none;
    color: var(--secondary-color);
}