/**
 * 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.
 */
.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

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

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

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

input.stripe-control {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	font-size: 16px;
	padding: 5px;
}

input.stripe-control::placeholder {
	color: #CCC;
}

button.stripe-control {
	display: block;
	width: 100%;
	font-size: 16px;
	padding: 15px;
	background: #4a164e;
	color: #FFF;
	margin-top: 10px;
	cursor: pointer;
	border-radius: 5px;
}

button.stripe-control:hover {
	background: #602065;
}

.donation-form-container {
    display: flex;
    justify-content: center;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
/*
	background: #EEE;
	border-radius: 5px;
	box-shadow: 0px 10px 8px -6px rgba(0,0,0,.5);
*/
}
