@font-face {
    font-family: 'Norse Bold';
    src: url(assets/fonts/Norse-Bold.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'arabotoMed';
    src: url(assets/fonts/Araboto\ Medium\ 400.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    user-select: none;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    border: 0px;
    display: flex;
    font-family: 'arabotoMed', 'Jetbrains Mono', monospace, system-ui, 'Roboto';
}

#div1 {
    margin: 0px;
    border: 0px;
    margin-bottom: 0;
    position: relative;
}

#greenPlant {
    height: 100vh;
    width: 60vh;
    display: block;
}

.logoBranding {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 20%;
    top: 20%;
}

#logo {
    margin: 1rem;
    width: auto;
    height: 80%;
}

.odinText {
    font-family: 'Norse Bold';
    color: #ffffff;
    font-size: 48px;
}

#div2 {
    min-height: 100vh;
    height: auto;
    flex-basis: 60%;
    flex-grow: 2;
    background-color: #F9FAFB;
}

#mainText {
    font-size: 16px;
    margin-left: 5%;
    margin-right: 20%;
    margin-top: 7.5%;
    margin-bottom: 2.5%;
}

.formDiv {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

form {
    margin-left: 5%;
}

fieldset {
    display: flex;
    border: none;
}

legend {
    margin-top: 2.5%;
    font-size: 20px;
    margin-bottom: 1em;
    color: #28303D;
}

label {
    font-size: 12px;
    display: block;
    color: #28303D;
}

input {
    color: black;
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    height: 30px;
    margin-right: 5em;
    margin-bottom: 20px;
    transition: box-shadow 0.5s linear;
    transition: border-color 0.2s linear;
    padding-left: 5px;
}

input:focus {
    border: 1px solid;
    border-color: #4E71DD;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    outline: none;
}

input:invalid {
    border: 1px solid;
    border-color: red;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    outline: none;
}

#signUpBtn {
    color: white;
    margin-left: 5%;
    margin-top: 2.5%;
    background-color: #596D48;
    outline: none;
    border: none;
    font: inherit;
    padding: 10px 40px 10px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: box-shadow 0.5s ease-in-out;
    cursor: pointer;
    margin-bottom: 1%;
}

#signUpBtn:hover {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

#logInRedirect {
    color: #596D48;
}

#logInTxt {
    margin-left: 5%;
    margin-top: 2%;
}