body {
  background-image: var(--accent-color);
  background-size: contain;
  background-position: 0px 0px;
  background-repeat: no-repeat;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 1rem;
  flex-direction: column;
}

h1 {
  color: white;
  font-size: 3rem;
  margin: 2rem 0 6rem 0;
}

.btn_email {
  color: var(--focus-color);
  display: flex;
  font-weight: 600;
  font-size: 1.8rem;
  position: relative;
  transition: all 0, 3s ease;
}

.selected {
  width: 15px;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 10%;
  transition: all 0, 3s ease;
  border-radius: 20px;
  background: var(--primary-color);
}
form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin-top: 2rem;

  input[type="text"] {
    height: 40px;
    outline: none;
    border-radius: 5px;
    padding: 1rem;
  }

  .btn_redefinir {
    color: var(--focus-color);
    position: absolute;
    bottom: 12px;
    font-weight: 800;
    right: 30px;
    text-decoration: underline;
  }
}

.two {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  margin-top: 2rem;

  input[type="text"] {
    height: 40px;
    outline: none;
    border-radius: 5px;
    padding: 1rem;
  }
  button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 98%;
    height: 40px;
    font-weight: 700;
    background: var(--primary-color);

    border-radius: 5px;
    margin: 0 auto 0 auto;
  }
}
