.form-container {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center; }

.form-title {
  margin-bottom: 40px;
  font-size: 21px;
  font-family: "PublicSans-SemiBold";
  color: #221D1D;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: 0.04rem; }

select.vs-source {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 14px;
  font-family: inherit;
  color: #6f6363;
  padding: 12px;
  height: auto;
  line-height: normal;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  width: 100%; }

select.vs-source:focus {
  outline: none;
  box-shadow: none; }

select.error-border {
  border: 1px solid red; }

.vs-store-launch-form {
  max-width: 800px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 30px; }

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -ms-flex-pack: center;
      justify-content: center; }

.field-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 1 300px;
      flex: 1 1 300px; }

input {
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9; }

input.error-border {
  border: 1px solid red; }

.error-msg {
  color: #c00;
  font-size: 12px;
  margin-top: 5px;
  display: none; }

body {
  font-family: 'PublicSans',  sans-serif;
  background: #fff;
  margin: 0;
  padding: 0; }

.submit-btn-store-launch {
  margin-top: 30px;
  font-family: "PublicSans-SemiBold";
  padding: 14px 28px;
  background-color: #f8d6dc;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  width: 255px;
  transition: background-color 0.3s ease; }

