body {
  background-color: #181b2c;
  color: #DDD6FE;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Karla", sans-serif;
  overflow-y: hidden;
}


.container {
  padding: 60px 30px;
  border-radius: 10px;
}


.heading {
  line-height: 40px;
  font-weight: 800;
  font-size: 35px;
  text-align: left;
  margin: 0;
}

.subheading {
  margin: 10px 0 50px 0;
  font-size: 22px;
}

span {
  color: #7C3AED;
}

hr {
  margin: 35px 0;
  color: #273549
}

button {
  background: #7C3AED;
  color: #DDD6FE;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 500;
}

button:active {
  background: #631a94;
}

input {
  background: #273549;
  color: #8a51ec;
  text-shadow: 0 0 1 black;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.password-box {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 20px;
}

@media (max-width: 450px) {
  .password-box {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;

  }
}

#copy-message {
  color: #7C3AED;
  margin: 8px 0 0 0;
  
}