/* ========================================
ACCOUNT PAGE STYLES
======================================== */

/* FIX PASSWORD FIELD MOBILE OVERLAP */

body.woocommerce-account 
.password-input{
    position:relative;
}

body.woocommerce-account 
.password-input input{

    padding-right:20px !important;
}


/* =========================
   DESKTOP
========================= */

@media (min-width:769px){

    /* MOVE WHOLE ACCOUNT AREA UP */

    .woocommerce-account .site-content{

        padding-bottom:0 !important;
    }

    /* TITLE SPACING */

    .woocommerce-account h1.entry-title{

        margin-top:-40px !important;

        margin-bottom:-30px !important;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    /* MOVE WHOLE ACCOUNT AREA UP */

    .woocommerce-account .site-content{

        padding-bottom:0 !important;
    }

    /* TITLE SPACING */

    .woocommerce-account h1.entry-title{

        margin-top:-10px !important;
        margin-bottom:-10px !important;
    }

/* MOBILE */

    body.woocommerce-account 
    .password-input input{

        font-size:13px !important;
    }
}