* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right bottom, #ffa585, #45c5d8);
  color: white;
  font-weight: 600;
}

.container {
  border: 0.5px solid white;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: 8px 8px 4px #909090, 8px 8px 0px #575757;
}
.container h1 {
  font-size: 1.4rem;
  margin-block: 8px;
}

.inputBox {
  position: relative;
}
.inputBox span {
  position: absolute;
  top: 16px;
  right: 6px;
  color: black;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.passBox {
  background-color: #fff;
  border: none;
  outline: none;
  padding: 10px;
  width: 300px;
  border-radius: 4px;
  margin-block: 8px;
  font-size: 20px;
  text-overflow: ellipsis;
}

.row {
  display: flex;
  margin-block: 8px;
}
.row p,
label {
  flex-basis: 100%;
}
.row input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.genBtn {
  border: none;
  background-color: #26619e;
  padding: 10px 24px;
  color: white;
  font-size: 18px;
  margin-block: 8px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}
.genBtn:hover {
  background-color: #0066f0;
}
