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

* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
}

/* Left side */
.sidebar {
    background-image: url("./static/halie-west-25xggax4bSA-unsplash.jpg");
    background-size: cover;
    flex: 1 2 0;
}

.banner {
    background-color: rgba(0, 0, 0, 0.5);
    position: relative;
    top: 20rem;
    display: flex;
    align-items: center;
    padding: 1rem 0 1rem 5rem;
}

.banner__logo {
    height: 10%;
    max-width: 25%;
}

.banner__text p{
    color: white;
    font-family: Norse-bold;
    font-size: 3rem;
    margin-left: 1rem;
}

img {
    height: 100%;
    width: 100%;
    object-fit:cover;
}

/* Right size*/
.main {
    flex: 1.5 1 0;
    background-color: rgb(245, 245, 245);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main__one {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.hero__text--upper {
    padding-bottom: 1em;
}

.form__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.form__entry {
    background-color: white;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.form__input {
    margin-right: 1rem;
}

.form__input input {
    font-size: 1.2rem;
    width: 17rem;
    background-color: antiquewhite;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-radius: 5px;
}

label {
    display: block;
    position: relative;
    top: 25px;
    left: 10px;
    color: grey;
}

.form__action {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.form__register button {
    color: black;
    border: 1px black solid;
    border-radius: 5px;
    font-size: 1.1rem;
    width: 12rem;
    height: 3rem;
    background-color: antiquewhite;
    margin-bottom: 1rem;
} 

.form__register button:hover {
    color: black;
    border: 2px black solid;
} 

.form__register button:active {
    box-shadow: inset 0px 0px 2px 1px white;
    transform: scale(0.98);}