@font-face {
  font-family: 'logo-text';
  src: url('https://cdn.statically.io/gh/TheOdinProject/theodinproject/efdc2888072f409e687d31dc580595dbe4fe0ff4/app/assets/fonts/Norse-Bold.otf');
}

body {
  background-color: grey;
  margin: 0;
}

.page-container {
  display: flex;
  background-color: grey;
  width: 100vw;
  height: 100vh;
}

.image-container {
  background-color: black;
  display: flex;
  width: 35%;
  flex-direction: column;
}

.image-container img {
  height: 100vh;
  position: absolute;
  width: 35%;
}

.info-container {
  background-color: red;
  display: flex;
  width: 65%;
  flex-direction: column;
}

.header-container {
  background-color: #f9fafb;
  display: flex;
  height: calc(100%/3);
  width: 100%;
  color: black;
  justify-content: center;
  flex-direction: column;
}

.form-container {
  background-color: #ffffff;
  display: flex;
  height: calc(100%/3);
  width: 100%;
  flex-direction: column;
  filter: drop-shadow(0px 1px 3px #000);

}
.button-container {
  background-color: #f9fafb;
  display: flex;
  height: calc(100%/3);
  width: 100%;
  flex-direction: column;
}

.logo-container {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  width: 100%;
  height: 15%;
  position: relative;
  top: 100px;
  justify-content: center;
}

.logo-container img {
  display: flex;
  height: 100%;
  width: 20%;
  position: relative;
}

.logo-container h1 {
  color: white;
  display: flex;
  font-family: 'logo-text';
  font-size: 6em;
  margin: 0;
  align-items: center;}

.footer-container {
  display: flex;
  height: 10%;
  width: 100%;
  top: 525px;
  position: relative;
}

.footer-container p {
  color: white;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.header-container p {
  margin: 75px 300px 75px 50px;
  font-size: 150%;
  font-weight: bold;
}

.button-container button {
  background-color: #596D48;
  width: 200px;
  padding: 10px;
  border-radius: 10px;
  color: white;
  margin-left: 50px;
  margin-top: 25px;
  font-weight: bold;
}

.button-container p {
  margin-left: 50px;
}

.left-container {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  width: 300px;
  gap: 5px;
}

.left-container h2 {
  width: 100%;
}

.right-container {
  display: flex;
  flex-direction: column;
  margin-left: 50px;
  width: 300px;
  gap: 5px;
}

.left-container input, .right-container input {
  border-color: #E5E7EB;
  height: 20px;
  border-radius: 5px;
}

.left-container label, .right-container label {
  font-size: 12px;
}

.forms {
  display: flex;
}

.intro {
  margin-left: 50px;
}

.button-container a {
  color: #596D48;
  text-decoration: none;
}

.footer-container a {
  color: white;
}