html, body{
  background: #0A1C33;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

h1, input, select, textarea{
  color: white !important;
}

p, .form-label{
  color: #6285b3;
}

.small > a{
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.small > a:hover{
  color: rgba(255, 255, 255);
}

.badge, button, #download{
  background-color: #6285b3 !important;
}

.card{
  border: none;
}

.wrapper{
  height: 585px;
  background: #233A5B;
  width: 350px;
  border-radius: 7px;
  padding: 16px 25px;
  transition: height 0.25s ease-in-out;
}

.wrapper.active{
  height: 820px;
}

.wrapper form{
  margin: 20px 0 25px;
}

.form-label{
  font-size: 12px;
  font-weight: 500;
}

form :where(input, select, button){
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
}

form :where(input, select){
  background: #4B6588 !important;
  border: none;
  outline: none;
}

select:hover{
  cursor:pointer;
}

select:hover:disabled{
  cursor:not-allowed;
}

input::placeholder{
  color: #879cb8 !important;
}

input, select, button, #download{
  border: none !important;
}

input:focus, select:focus, #download:focus {
  border: none !important;
  box-shadow: none !important;
}

#fdownload{
  width: 220px;
}

.wrapper #qr{
  position: absolute;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0 70px 0;
  border: 1px solid #6285b3;
  border-radius: 0.25rem;
}

.wrapper.active #qr{
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease 0.2s;
}

#download{
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: white;
}

#download span.size{
  font-size: 10px;
  font-weight: 500;
  margin-top: 0;
  padding-top: 0;
}

#fqr input[type="color"]{
  width:100%;
}