#stripe_bank_payment_form .group {
    background: white;
    box-shadow: 0 7px 14px 0 rgba(49,49,93,0.10),
    0 3px 6px 0 rgba(0,0,0,0.08);
    border-radius: 4px;
    margin-bottom: 20px;
}

#stripe_bank_payment_form label {
    position: relative;
    color: #8898AA;
    font-weight: 300;
    height: 40px;
    line-height: 40px;
    margin-left: 20px;
    display: flex;
    flex-direction: row;
}

#stripe_bank_payment_form .group label:not(:last-child) {
    border-bottom: 1px solid #F0F5FA;
}

#stripe_bank_payment_form label > span {
    width: 120px;
    text-align: right;
    margin-right: 30px;
}

#stripe_bank_payment_form .field {
    background: transparent;
    font-weight: 300;
    border: 0;
    color: #31325F;
    outline: none;
    flex: 1;
    padding-right: 10px;
    padding-left: 10px;
    cursor: text;
}

#stripe_bank_payment_form .field::-webkit-input-placeholder { color: #CFD7E0; }
#stripe_bank_payment_form .field::-moz-placeholder { color: #CFD7E0; }

#stripe_bank_payment_form button {
    float: left;
    display: block;
    background: #666EE8;
    color: white;
    box-shadow: 0 7px 14px 0 rgba(49,49,93,0.10),
    0 3px 6px 0 rgba(0,0,0,0.08);
    border-radius: 4px;
    border: 0;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    height: 40px;
    line-height: 38px;
    outline: none;
}

#stripe_bank_payment_form button:focus {
    background: #555ABF;
}

#stripe_bank_payment_form button:active {
    background: #43458B;
}

#stripe_bank_payment_form .outcome {
    float: left;
    width: 100%;
    padding-top: 8px;
    min-height: 24px;
    text-align: center;
}

#stripe_bank_payment_form .success, .error {
    display: none;
    font-size: 13px;
}

#stripe_bank_payment_form .success.visible, .error.visible {
    display: inline;
}

#stripe_bank_payment_form .error {
    color: #E4584C;
}

#stripe_bank_payment_form .success {
    color: #666EE8;
}

#stripe_bank_payment_form .success .token {
    font-weight: 500;
    font-size: 13px;
}