#page {
    background: #fafafa;
}

ul.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 12px;
}

ul.feature-list li {
    display: flex;
    align-items: center;
    gap: 5px;
}

span.feature-text.unavailable {
    color: #858585;
}

.pmpro .pmpro_form_input {
    padding: 5px;
    padding-right: 35px;
    border-radius: 5px;
    border: 1px solid #bfbfbf;
    position: relative;
}

.pmpro .pmpro_form_input:focus{
        border-color: #046BD2;
    box-shadow: none;
    outline: none;
    color: var(--ast-form-input-focus-text, #475569);
}

button.pmpro_btn.pmpro_btn-plain.pmpro_btn-password-toggle {
    outline: none;
    box-shadow: none;
}

span.pmpro_form_field-password-toggle-state {
    font-weight: 100;
    font-size: 12px;
}

svg.feather.feather-eye, svg.feather.feather-eye-off {
    stroke-width: 1;
    width: 18px;
    height: 18px;
}

span.pmpro_asterisk abbr {
    font-size: 18px;
    vertical-align: middle;
    line-height: 1;
    color: red !important;
}

.pmpro_message.pmpro_error {
    border: none;
    box-shadow: none;
    color: red;
    background: none;
    padding-left: 0;
}

.pmpro_message.pmpro_error::before {
    content: '\F33B';
    font-family: "Bootstrap-icons";
    vertical-align: middle;
    font-size: 14px;
    margin-right: 5px;
}

.pmpro .pmpro_form_input.pmpro_form_input-error {
    border-color: #ff9494;
    box-shadow: none;
}

label.pmpro_form_label.pmpro_clickable {
    align-items: center !important;
}
 

.pmpro_form_field.pmpro_form_field-text.pmpro_form_field-username::before{
 content: '\F4E1';
}

.pmpro_form_field{
    position:relative;
}

.pmpro_form_field::before {
    position: absolute;
    right: 10px;
    bottom: 0;
    font-family: "Bootstrap-icons";
    z-index: 1;
    transform: translateY(-50%);
    line-height: 1;
    color: gray;
    font-weight: 100;
    font-size: 15px;
}

.pmpro_form_field-password::before{
    content: '\F47B';
}

.pmpro_form_field-email::before{
    content:'\F32F';
}

div#pmpro_pricing_fields::after {
    content: '';
    background-image: url(../../assets/imgs/membership.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    height: 100%;
}

div#pmpro_pricing_fields {
    display: grid;
    grid-template-columns: 60% auto;
    grid-template-areas: "heading heading"
        "list svg1";
}

#pmpro_pricing_fields  h2.pmpro_card_title {
    grid-area: heading;
}
 
 
fieldset#pmpro_user_fields .pmpro_card::before {
    content: '';
    background-image: url(../../assets/imgs/signup.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-left: 20px;
}

fieldset#pmpro_user_fields .pmpro_card{
    box-shadow: none; 
}

body.logged-in fieldset#pmpro_user_fields .pmpro_card {
    grid-template-areas: unset;
    min-height: 250px;
    grid-template-columns: 30% auto;
}

fieldset#pmpro_user_fields .pmpro_card_actions {
    grid-area: action;
}

fieldset#pmpro_user_fields .pmpro_card {
    display: grid;
    grid-template-areas: "form svg"
        "action action";
    grid-template-columns: 40% auto;
    gap: 20px 35px;
}

.pmpro .pmpro_card{
    box-shadow: none;
}


#pmpro_billing_address_fields .pmpro_card {
    display: grid;
    grid-template-columns: 60% auto;
    gap: 40px;
}

#pmpro_billing_address_fields .pmpro_card::after {
    content: '';
    background-image: url(../../assets/imgs/location.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

input#pmpro_btn-submit {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 1rem;
    background: #1e293b;
    border: none;
}
input#pmpro_btn-submit:hover{
    background:#2f3f57;
}


@media screen and (max-width:920px){
    fieldset#pmpro_user_fields::after {
    
        display: none;
    }
    
    fieldset#pmpro_user_fields .pmpro_card{
        
        grid-template-columns: 30% auto;
    }
}

@media screen and (max-width:767px){
    fieldset#pmpro_user_fields .pmpro_card, div#pmpro_pricing_fields{
        grid-template-areas: unset !important;
        grid-template-columns: unset !important;
    }
    fieldset#pmpro_user_fields .pmpro_card::before , #pmpro_billing_address_fields .pmpro_card::after, div#pmpro_pricing_fields::after{
        display: none;
    }
    fieldset#pmpro_user_fields .pmpro_card_actions, #pmpro_pricing_fields h2.pmpro_card_title{
        grid-area: unset;
    }
    
   .pmpro_card .pmpro_cols-2, .pmpro_card .pmpro_cols-3 {
            display: grid;
            grid-template-columns: 1fr 1fr;
             
        }
        #pmpro_billing_address_fields .pmpro_card{
            grid-template-columns: unset;
        }
}
@media screen and (max-width:555px){
    .pmpro_card .pmpro_cols-2, .pmpro_card .pmpro_cols-3 {
            display: flex;
            flex-direction: column;
        }
}

