@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap");
body {
  font-family: "Ubuntu", sans-serif;
  height: 100vh;
  width: 100%;
  color: white;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
}

.container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("/assets/images/hubert-gontarz-funuqwGlJOY-unsplash.jpg")
    no-repeat center;
  background-size: cover;
  filter: blur(30px);
  z-index: -1;
}

.container-box {
  max-width: 800;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.308);
  box-shadow: 0 0 0 0.25rem rgba(107, 13, 13, 0.062);
}

.left-side {
  background-color: rgba(0, 0, 0, 0.253);
  padding: 15px 30px;
}
.left-side .logo {
  display: flex;
  justify-content: center;
}
.left-side img {
  width: 100px;
}
.left-side span {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  text-align: center;
  color: brown;
}
.left-side label {
  font-size: 14px;
}
.input {
  padding: 0.5rem 1rem;
  display: block;
  border: none;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 2px;
  font-size: 1.1rem;
  transition: 0.3s;
  outline: none;
}
.input:hover {
  background-color: rgba(224, 213, 213, 0.836);
}
.input:focus {
  background-color: white;
  border: brown 1px;
}
select {
  padding: 8px;
  display: block;
  border: none;
  width: 95%;
  margin: 4px;
  border-radius: 2px;
  background-color: white;

  /*disable default dropdown icon*/
  -webkit-appearance: none;
  appearance: none;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}
select:required:invalid {
  color: gray;
}
select:hover {
  background-color: rgba(224, 213, 213, 0.836);
}
input[type="submit"] {
  padding: 0.4rem 5rem;
  display: block;
  border-radius: 4px;
  border: none;
  background-color: brown;
  color: white;
  margin: 0 auto;
  font-size: 1rem;
}
input[type="submit"]:hover {
  background-color: rgb(206, 66, 66);
}

.left-side .footer {
  margin-top: 12px;
  font-size: 10px;
  text-align: center;
  font-weight: 100;
}
.right-side {
  background: url("/assets/images/hubert-gontarz-funuqwGlJOY-unsplash.jpg")
    no-repeat center;
  background-size: cover;
  height: 100%;
}
@media screen and (max-width: 880px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
  .right-side {
    height: 200px;
  }
}
