* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

img {
  width: 100%;
  display: block;
}

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

.box-left {
  position: relative;
  min-height: 100vh;
  width: 40%;
  background-image: url("./assets/doggy.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 28px;
  font-weight: bold;
  color: black;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.box-left::before {
  content: "";
  position: absolute;
  background-color: #484b6191;
  width: 100%;
  height: 100%;
}

.header {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: 5em;
}

.header img {
  height: 60px;
  width: 60px;
  padding: 0.5em;
  background-color: #eadede;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5em;
}

.box-right {
  min-height: 100vh;
  background-color: #484b61;
  width: 60%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

h1 {
  color: #fff;
  margin-bottom: 20px;
}

label {
  color: #fff;
  padding: 0px;
  margin-right: 20px;
}

input {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 5px;
  border: none;
  border-radius: 5px;
}

.gender-area div {
  display: flex;
}

.gender-area label {
  margin-top: 10px;

}

.gender-area .gender-option {
  display: flex;
  width: initial;
}

.gender-area div input {
  width: initial;
  margin: 10px;
  margin: 0 10px;
}

.animals {
  margin-top: 20px;
}

button {
  background: beige;
  color: black;
  padding: 12px;
  font-size: 18px;
  border: 0;
  border-radius: 10px;
  display: block;
  margin: auto;
}

button:hover {
  background-color: pink;
}

@media (max-width: 1024px) {
  .box-right {
    min-height: 60vh;
    width: 100%;
  }

  .box-left {
    min-height: 40vh;
    width: 100%;

  }
}

.form-area {
  margin-top: 20px;
  margin-bottom: 20px;
}