* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

body {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-90deg, #dae3dd 0, #a8dbdc 100%);
  color: #1e272e;
  font-weight: 600;
}
body::selection {
  background: 0 0;
}
/* Go Home */
.go-home {
  position: absolute;
  width: 40px;
  height: auto;
  top: 40px;
  right: 40px;
}
.go-home a svg {
  transition: all ease 0.3s;
}
.go-home:hover a svg {
  scale: 0.9;
}

.container {
  border: 2px solid #00cdc9;
  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: #000;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}
.passBox {
  background-color: #fff;
  border: none;
  outline: none;
  padding: 10px;
  width: 300px;
  border-radius: 4px;
  font-size: 20px;
  margin-block: 8px;
  text-overflow: ellipsis;
}

.checkboxs {
  accent-color: #00cdc9;
}

.row {
  display: flex;
  margin-block: 8px;
}

.row p,
.row label {
  flex-basis: 100%;
  font-size: 18px;
}

.row input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.genBtn {
  border: none;
  outline: none;
  background-color: #00cdc9;
  padding: 12px 24px;
  color: #1e272e;
  font-size: 18px;
  margin-block: 8px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all ease 0.3s;
}

.genBtn:hover {
  background-color: #1e272e;
  color: #ffffff;
}
