body {
  margin: 0;
  padding: 0;

  background-color: #f6f5fa;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 100vh;
}

main {
  display: flex;
  align-items: center;
  height: 100%;

  form {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);

    h1 {
      font-size: 24px;
      text-align: center;
    }
    .coluna {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 290px;

      .entrada {
        display: flex;
        gap: 10px;
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 12px;

        .icon {
          display: flex;
          justify-content: center;
          align-items: center;
          border-right: 1px solid #ccc;
          width: 40px;

          i {
            font-size: 20px;
          }
        }

        .input {
          display: grid;

          label {
            font-size: 10px;
            color: #555;
          }
          input {
            border: none;
            outline: none;
            font-size: 16px;
            padding: 5px 0;
            background-color: transparent;
          }
        }
      }

      .btn {
        padding: 10px;
        border: none;
        border-radius: 12px;
        background-color: #4a2abb;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;

        &:hover {
          background-color: #3a1a99;
        }
      }
    }
  }
}

footer {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #777;
}
