html, body {
  display: flex;
  height: 100vh;
  margin: 0;
  width: 100%;
  background-color: rgb(250, 250, 250);
}

.left-container {
  width: 32%;
  position: relative;
}

.left-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
}

.odin-image {
  width: 12%;
  display: flex;
  justify-content: center;
}

.credit {
  bottom: 0%;
  color: white;
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
}

.left-body-text {
  color: white;
  font-size: 6vw;
  font-family: NorseBold;
}

.left-body-container {
  background: rgba(0, 0, 0, 0.6); /* Black with 60% opacity */
  top: 22%;
  width: 100%;
  height: 150px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right container for remaining content */
.right-container {
  flex: 1; /* Take up remaining space */
  margin-left: 3%;
  margin-top: 6.5%;
}

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

h1, h2, h3{
  font-family: Helvetica, sans-serif, Geneva, Tahoma, sans-serif;
}

/* Form Styling */

.form-section {
  background-color: white;
  margin-top: 4%;
  box-shadow: 12px 5px 5px 1px rgba(0, 0, 0, 0.2);
}

.inner-form {
  margin-left: 4%;
  padding-top: 10px;
  padding-bottom: 10px;
}

label, p {
  font-family: Helvetica, sans-serif, Geneva, Tahoma, sans-serif;
  font-size: 14px;
}

form {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-column: 20px;
}

.button {
  width: 20%;
  border-radius: 5px;
  background-color: #596D48;
  border-color: #596D48;
  color: white;
  font-weight: bold;
  font-size: 0.8vw;
  padding-top: 10px;
  padding-bottom: 10px;
}

input { /* input[type=text]*/
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #E5E7EB;
  border-radius: 5px;
  transition: 0.3s;
  outline: none;
}

input:focus {
  border: 2px solid #0077ff;
  box-shadow: 0 5px 15px -4px black;
}

input[type=password]:invalid {
  border: 2px solid red;
}

input[type=email]:invalid {
  border: 2px solid red;
}

.log-in {
  font-size: 19px
}

.inline-link {
  color: #596D48;
}
.inline-link:link { text-decoration: none; }
.inline-link:visited { text-decoration: none; }
.inline-link:hover { text-decoration: none; }
.inline-link:active { text-decoration: none; }
