@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  background-size: 100% 100%;
  background-image: url("../../source/blurry-gradient-haikei.png");
  display: flex;
  align-items: center;
  justify-content: center;
}

.generate-block {
  width: 500px;
  height: 550px;
  background: rgba(5, 9, 71, 0.8);
  border-radius: 10px;
  padding: 15px;
}

.generate-title {
  color: #fff;
  width: 90%;
  display: block;
  margin: 0 auto;
}

.generate-result {
  border: none;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  display: block;
  background: rgba(38, 46, 156, 0.911);
  border-radius: 5px;
  height: 50px;
  margin-top: 20px;
  color: #fff;
  font-weight: 100;
  font-size: 20px;
}

.generate-lenghts_block {
  height: 45px;
  width: 90%;
  background: rgba(38, 46, 156, 0.911);
  margin: 0 auto;
  margin-top: 20px;
  border-radius: 5px;
  position: relative;
}

.generate-lenghts_title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  width: 90%;
  display: block;
  position: relative;
  top: 15px;
  margin: 0 auto;
}

.lenghts-input {
  width: 80%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lenghts-input::after {
  content: "32";
  position: absolute;
  right: -25px;
  font-size: 15px;
  color: #fff;
}
.lenghts-input::before {
  content: "4";
  position: absolute;
  left: -25px;
  font-size: 15px;
  color: #fff;
}

.generate-settings {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  width: 90%;
  display: block;
  position: relative;
  top: 35px;
  margin: 0 auto;
}

.generate-settings_block {
  position: relative;
  width: 90%;
  height: 50px;
  background: rgba(38, 46, 156, 0.911);
  border-radius: 5px;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  padding-left: 20px;
}
.generate-settings_block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.settings_uppercase {
  margin-top: 40px;
}

.switch-block {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.generate-button {
  width: 90%;
  height: 50px;
  display: block;
  position: relative;
  top: 30px;
  border-radius: 5px;
  margin: 0 auto;
  background: rgb(34, 72, 195);
  background: linear-gradient(0deg, rgb(34, 72, 195) 0%, rgb(31, 144, 195) 100%);
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.switch {
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #4121f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

@media (max-width: 600px) {
  .generate-block {
    width: 90%;
    height: 600px;
  }
  .generate-title {
    font-size: 28px;
  }
}

/*# sourceMappingURL=style.css.map */
