main {
  display: flex;
  height: 100vh;
}

main aside {
  max-width: 700px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px;
}

main aside strong {
  font-size: 1.6rem;
}

main aside > div {
  width: 100%;
}

main aside > div form {
  width: 100%;
}

main aside > div form button {
  margin-top: 26px;
  width: 100%;
  color: var(--branco);
  padding: 8px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;

  background: var(--primary);
  border: 0;
  border-radius: 3px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.3s;
}

main aside > div form button:hover {
  opacity: 0.8;
}

main aside span {
  display: flex;
  align-items: center;
}

main aside span a {
  color: rgb(65, 65, 65);
  text-decoration: none;
  transition: all 0.3s;
}

main aside span a:hover {
  color: var(--primary);
}

main aside span svg {
  width: 21px;
  height: 21px;
}

main aside span a + a {
  margin-left: 20px;
}

main section {
  flex: 1;
  background: var(--primary);

  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100vh;
  overflow: hidden;
}

main section img {
  width: 40vw;
  max-height: 75vh;
}
