body {
  height: 100vh;
  overflow-y: hidden;
}

.main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}

.first_line {
  display: flex;
  margin: 40px 10vw;
  justify-content: space-around;
}

.conteudo {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

h1 {
  margin-bottom: 25px;
  color: #0e0e0e;
  font-size: 24px;
  font-weight: 600;
}

form {
  display: flex;
  width: 465px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

form div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

form div label {
  color: #2c2c2c;
  font-size: 16px;
  font-weight: 500;
}

form div input {
  display: flex;
  height: 50px;
  max-width: 40vw;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 5px;
  border: 1px solid #c3c3c3;
  background: #fbfbfb;
  color: #353535;
  font-size: 12px;
  font-weight: 400;
  box-sizing: border-box;
}

.btn_esqueci_senha {
  color: #8ea134;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  padding-top: 12px;
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.copy img {
  max-width: 300px;
}

.copy p {
  color: #8ea134;

  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.c_btn_submit {
  border-top: 1px solid #c3c3c3;
  padding-right: 32px;
  height: 120px;
  margin-top: 50px;
  display: flex;

  align-items: center;
  justify-content: flex-end;
}

.btn_submit_form,
.btn_submit {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;

  border-radius: 5px;
  background: var(--Primary, #8ea134);

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn_submit_form:hover,
.btn_submit:hover {
  background: var(--Primary, #7d8d2b);
}

.c_input_senha,
.c_input_confirmar_senha {
  position: relative;
  max-width: 40vw;
}

.mostra_senha {
  background: none;
  border: none;
  cursor: pointer;

  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
}
.mostra_senha:hover {
  scale: 105%;
}

@media screen and (max-width: 768px) {
  .copy {
    display: none;
  }
  form {
    width: auto;
  }
  form div input {
    max-width: 100%;
  }
  .conteudo {
    width: 100%;
  }
}
