.form-container {
  width: 40%;
  background: #000;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  background-size: 200% 100%;
  left: 0;
}

.form-container button:active {
  scale: 0.95;
}

.form-container .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;

  font-weight: 600;
  font-size: 12px;
  background: linear-gradient(45deg, #fdfeff 10%, #4e5550 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #414141;
}

.form-container .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  resize: none;
  color: #fff;
  height: 96px;
  border: 1px solid #414141;
  background-color: transparent;
  font-family: inherit;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: white;
}

.form-container .form-group textarea:focus {
  outline: none;
  border-color: white;
}

.text-QS {
  width: 50%;
  text-align: center;
  font-size: 70px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(45deg, #fdfeff 10%, #7e7a7a 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-QS-info {
  padding-top: 3%;
  font-weight: 700;
  font-size: 19px;
  color: #ccc;
}

.btn-g {
  width: 40%;
  display: inline-block;
  padding: 15px 35px;
  border: 2px solid white;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-right: 20px;
  border-radius: 50px;
  background: #000;
  cursor: pointer;
}

.btn-g:hover {
  background-color: var(--Color-content);
  color: var(--color-text);
  box-shadow: 0 0 40px #fff;
}
