/**
 * 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.
 */

.card-block{
    background-color: #191a1c;
    text-align: left;
    font-size: 19px;
    border-radius: 25px;
    padding: 15px;
}
.StripeElement {
  box-sizing: border-box;

  height: 40px;
    margin-top: 10px;

  padding: 10px 12px;
    color: white;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: transparent;
}

.InputElement{
    background-color: transparent;
        color: white !important;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}
.form-row {
    width: 70%;
    float: left;
}

.modal-body{
    min-height: 200px;
}


.stripe-btn {
    border: none;
    border-radius: 4px;
    outline: none;
    text-decoration: none;
    color: #fff;
    background: #32325d;
    white-space: nowrap;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 14px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-decoration: none;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    float: left;
    margin-left: 12px;
    margin-top: 28px;
}