.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    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;
}
.cardpayment_wrapp {
    position: relative;
    min-height: 100%;
    display: grid;
    place-items: center;
}
.cardpayment_box {
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 20px rgb(89 102 122 / 5%);
    box-shadow: 0 0 20px rgb(89 102 122 / 5%);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
}
.payment_wrapp {
    margin-top: 50px;
}
.cardpayment_box .logo {
    text-align: center;
    margin-bottom: 50px;
}
.payment_wrapp #card-element {
    background-color: #eef3f7;
    color: #092a49;
    padding: 10px 15px;
    height: auto;
    width: 100%;
    border: 1px solid #092a49;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
}


.payment_submit {
    background-color: #036dbc;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.9px;
    padding: 10px 20px;
    display: inline-block;
    transition: 0.3s;
    border-radius: 5px;
    border: none;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
}



@media only screen and ( max-width: 767px ) {
    .cardpayment_wrapp {
        position: relative;
        margin: 50px 0;
        min-height: auto !important; 
    }
    .cardpayment_box {
        margin: 0;
        padding: 35px 15px;
    }
}
button#submit {
    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;*/
}

html, body {
    height: 100%;
    background-color: #f2f2f2;
}
footer {
    position: relative;
    bottom: 0;
}