body { font-family: Arial, sans-serif; }

body * { box-sizing: border-box; }

.aas-stripe-form,
.aas-stripe-form * { box-sizing: border-box; }


.aas-stripe-form { margin-bottom: 40px; }

.flex-container { display: flex; flex-wrap: wrap; width: 500px; }
.flex-container .flex-left { flex: 1 0 30%; padding: 10px; border:solid 1px #ccc; }
.flex-container .flex-right { flex: 1 0 70%; padding: 10px; border:solid 1px #ccc; }
.flex-container .flex-left { text-align: right; }


/**
* The CSS shown here will not be introduced in the Quickstart guide, but
* shows how you can use CSS to style your Element's container.
*/
input,
.StripeElement {
  height: 40px;
  padding: 10px 12px;

  color: #32325d;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 4px;

  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.form-row { margin-top: 20px; }
.form-row.inline { display: flex; }
.form-row.inline .col:not(:last-child) { margin-right: 20px; }


input:focus,
.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}



.aas-stripe-form button,
.aas-stripe-form input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  height: 40px;
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
  background: #32325d;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  line-height: 1;
}

.aas-stripe-form button:hover,
.aas-stripe-form input[type="submit"]:hover {
  background-color: #43458b;
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, .10), 0 3px 6px rgba(0, 0, 0, .08);
}

