body {
  box-sizing: border-box;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  display: flex;
}

#root {
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  animation: 1s ease-in-out fadeIn;
  box-shadow: 0 8px 20px #0000004d;
}

.heading {
  color: #380b14;
  background-color: #c0d7ff;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: monospace;
}

h1 {
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}

.password-display {
  box-sizing: border-box;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  cursor: pointer;
  background-color: #f9f9f9;
  border: 2px solid #ddd;
  border-radius: 25px;
  width: 100%;
  margin: 15px 0;
  padding: 12px;
  font-size: 16px;
  transition: border-color .3s;
  overflow: hidden;
}

.password-display:hover {
  white-space: normal;
  text-overflow: unset;
  overflow: visible;
}

.second {
  color: #666;
  margin-bottom: 15px;
  font-size: 18px;
}

button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  border: none;
  border-radius: 25px;
  margin: 10px 5px;
  padding: 12px 25px;
  font-size: 16px;
  transition: transform .3s, box-shadow .3s;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px #ff758c80;
}

input {
  box-sizing: border-box;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 25px;
  width: 100%;
  margin: 15px 0;
  padding: 12px;
  font-size: 16px;
  transition: border-color .3s;
}

input:focus {
  border-color: #6a11cb;
  outline: none;
}

.checkbox-container {
  cursor: pointer;
  align-items: center;
  margin: 10px 0;
  display: flex;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkbox-container .custom-checkbox {
  border: 2px solid #6a11cb;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.checkbox-container input[type="checkbox"]:checked + .custom-checkbox {
  background-color: #6a11cb;
  border-color: #6a11cb;
}

.checkbox-container input[type="checkbox"]:checked + .custom-checkbox:after {
  content: "✔";
  color: #fff;
  font-size: 14px;
}

.checkbox-container label {
  color: #666;
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
  transition: color .3s;
}

.checkbox-container:hover label {
  color: #6a11cb;
}

@media (width <= 768px) {
  #root {
    padding: 20px;
  }

  h1 {
    font-size: 22px;
  }

  .second {
    font-size: 16px;
  }

  button {
    padding: 10px 20px;
    font-size: 14px;
  }

  input {
    font-size: 14px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*# sourceMappingURL=index.2cdaf7bc.css.map */
