@import url("https://fonts.googleapis.com/css?family=Amatic+SC");
.footer {
  bottom: 0;
  color: white;
  top: 35rem;
  font-size: 2rem;
}
.footer .title {
  font-family: "Amatic SC";
}
.footer .sub {
  display: flex;
  justify-content: space-around;
  font-size: 1rem;
  font-family: "Amatic SC";
}
.footer .sub a {
  color: #f58021;
  text-decoration: none;
}
.footer .sub a:hover {
  color: white;
}

body {
  width: 99%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #222;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -5rem auto 3rem auto;
  top: 0;
  bottom: 0;
  border-radius: 2rem;
  overflow: hidden;
  height: 32rem;
}
.container h1 {
  color: white;
  font-family: "Amatic SC";
  font-size: 2.0rem;
}

.password__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-family: "Amatic SC";
}
.password__content--flex {
  display: flex;
  align-items: center;
}
.password__content--input {
  width: 280px;
  background: #fff;
  color: #a3a3a3;
  font-size: 1.6rem;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 0;
  padding: 15px 35px 15px 15px;
  border-radius: 0.2rem;
}
.password__content--input.--error {
  border: 4px solid #f58021;
}
.password__content--button {
  width: 5rem;
  height: 3.15rem;
  border-radius: 0.2rem;
  border: none;
  font-size: 1rem;
  margin-left: -3rem;
  background-color: #f58021;
  font-family: "Amatic SC";
  font-weight: bold;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}
.password__content--button:hover {
  opacity: 0.8;
}
.password__content--checkbox {
  width: 100%;
  position: relative;
}
.password__content--checkbox label {
  position: relative;
  min-height: 34px;
  display: block;
  padding-left: 40px;
  font-size: 1.3rem;
  color: white;
  cursor: pointer;
}
.password__content--checkbox label span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.password__content--checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 3px;
  border: 2px solid #f58021;
}
.password__content--checkbox label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #f58021;
  border-left: 2px solid #f58021;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  position: absolute;
  top: 12px;
  left: 10px;
}
.password__content--checkbox input {
  width: auto;
  opacity: 1e-8;
  position: absolute;
  left: 0;
  margin-left: -20px;
}
.password__content--checkbox input:checked ~ label:before {
  border: 2px solid #f58021;
}
.password__content--checkbox input:checked ~ label:after {
  transform: rotate(-45deg) scale(1);
}
.password__content--result {
  display: flex;
  margin-top: 4rem;
  color: #f58021;
  font: 1em sans-serif;
  border-bottom: 1px solid rgba(246, 247, 250, 0.36);
  font-size: 2.5rem;
}
.password__content--result button {
  width: 100%;
  height: 3rem;
  border-radius: 0.2rem;
  border: none;
  font-size: 1rem;
  margin-left: 0;
  background-color: #f58021;
  font-family: "Amatic SC";
  font-weight: bold;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 2rem;
  display: none;
}
.password__content--result button:hover {
  opacity: 0.8;
}
.password__content--result button.--display {
  display: flex;
  margin-left: 1rem;
}
.password__content--copied {
  background-color: white;
  font-size: 2rem;
  border-radius: 0.5rem;
  padding: 0.2rem 1em;
  opacity: 1;
  position: absolute;
  top: 12rem;
  transition: 0.2s ease;
  opacity: 0;
}
.password__content--copied.--show {
  top: 15.5rem;
  opacity: 1;
}

.never-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
}