body {
  background: linear-gradient(65deg, #f76f1e, #6c5ce7) no-repeat;
  min-height: calc(100vh - 16px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Comfortaa", cursive;
  line-height: 1.5;
  letter-spacing: 2px;
}
.btn {
  width: 200px !important;
}
.url {
  border: 1px solid #ecf0f1;
  background: transparent;
  color: #ecf0f1;
  padding: 10px 15px;
  font-size: 16px;
  letter-spacing: 2px;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  margin: 20px 0;
  cursor: pointer;
  outline: none;
  border-radius: 6px;
  width: 250px;
}
.url::placeholder {
  color: #ecf0f1;
  opacity: 0.4;
}
.container {
  width: 70%;
  margin: 0 auto;
}

a {
  color: #bdc3c7;
  text-decoration: underline;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

a:hover {
  cursor: pointer;
  color: #ecf0f1;
}

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section .title {
  color: #ecf0f1;
  font-weight: 700;
}

.section .white {
  color: #ecf0f1;
}

.section form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 64vh;
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section form span.label {
  color: #ecf0f1;
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 25px;
  text-transform: capitalize;
}

.section form label.file {
  cursor: pointer;
}

.section form label.file .fas {
  color: #ecf0f1;
}

.section form label.file .block {
  display: block;
  margin: 10px 0;
}

.section form .preview {
  height: auto;
  width: 10vw;
  margin: 5px 0;
}

.section form input[type="file"] {
  visibility: hidden;
}

.section form .submit {
  border: 1px solid #ecf0f1;
  background: transparent;
  color: #ecf0f1;
  padding: 10px 20px;
  font-size: 17px;
  letter-spacing: 2px;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  margin: 20px 0;
  cursor: pointer;
  outline: none;
}

.section form .submit:hover {
  background: #ecf0f1;
  border: 1px solid transparent;
  color: #2c3e50;
}
.section form .restart {
  border: 1px solid #ecf0f1;
  background: transparent;
  color: #ecf0f1;
  padding: 10px 20px;
  font-size: 17px;
  letter-spacing: 2px;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
  margin: 20px 0;
  cursor: pointer;
  outline: none;
}

.section form .restart:hover {
  background: #ecf0f1;
  border: 1px solid transparent;
  color: #2c3e50;
}

.section form .show {
  visibility: visible;
}

.section form .hide {
  visibility: hidden;
}

.section form #pass {
  width: 70%;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.section form div .progress {
  width: 100%;
  min-height: 20px;
  overflow: hidden;
  background: #f5f5f5;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section form div .progress-bar {
  width: 70%;
  height: 100%;
  font-size: 16px;
  padding: 5px 0;
  color: #fff;
  text-align: center;
  background-color: #a29bfe;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.section form div .progress-bar-striped,
.section form div .progress-striped .progress-bar {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
}

.section form div .progress-bar.active,
.section form div .progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.section form div .progress-bar-success {
  background-color: #5cb85c !important;
}

.section form div .progress-striped .progress-bar-success {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
}

.section .credit {
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.section .credit span {
  color: #ecf0f1;
}
