@CHARSET "ISO-8859-1";

.simple-form {
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 1.5rem;
	margin-bottom: 0.75rem;
}

.simple-form .form-group {
	width: 100%;
	margin-bottom: 10px;
}

.simple-form .form-group label {
	text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.simple-form .form-group input {
	height: 50px;
	box-sizing: border-box;
	width: 100%;
	padding: 12px;
	display: inline-block;
	box-shadow: none;
	font-weight: 600;
	font-size: 14px;
	border-radius: 6px;
	border: 1px solid #dddddd;
	line-height: 20px;
	background: #fcfcfc;
	background: linear-gradient(to right, white 50%, #fcfcfc 50%);
	background-size: 200% 100%;
	background-position: right bottom;
	transition: all 300ms ease-in-out;
}
.simple-form .form-group input.stripe-field-invalid {
    border: 1px solid #ed574a;
}
.simple-form .form-group input.input-field-focus {
  border: 1px solid #64d18a;
  border-radius: 1px;
  background-position: left bottom;
}
.simple-form .form-group input:focus{
	outline: none;
}