/* Start custom CSS */#customer_login {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 1000px;
    margin: 30px auto 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* -----------------------------------------
   COLUMNS
----------------------------------------- */

#customer_login .u-column1,
#customer_login .u-column2 {
    float: none !important;
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    margin: 0 !important;
    padding: 45px 50px !important;
    box-sizing: border-box !important;
}

/* Override shortcode's inline border */
#customer_login .u-column1 {
    border-right: 1px solid #e3e3e3 !important;
}

/* -----------------------------------------
   HEADINGS
----------------------------------------- */

#customer_login h5 {
    margin: 0 0 28px !important;
    padding: 0 !important;
    font-size: 22px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #011648 !important;
}

/* -----------------------------------------
   FORM
----------------------------------------- */

#customer_login form {
    margin: 0 !important;
    border: none !important;
    padding: 0;
}

#customer_login .form-row,
#customer_login .woocommerce-form-row {
    margin: 0 0 18px !important;
    padding: 0 !important;
}

/* Labels */
#customer_login label {
    display: block !important;
    margin: 0 !important;
    color: #333 !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}

/* -----------------------------------------
   INPUTS
----------------------------------------- */

#customer_login input.input-text {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 50px !important;
    margin: 8px 0 0 !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    border: 1px solid #d6d6d6 !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #222 !important;
    font-size: 15px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}

#customer_login input.input-text:focus {
    border-color: #b0060a !important;
    box-shadow: 0 0 0 3px rgba(176, 6, 10, .08) !important;
}

/* Password */
#customer_login .password-input {
    display: block !important;
    position: relative !important;
}

#customer_login .password-input input {
    padding-right: 50px !important;
}

/* -----------------------------------------
   BUTTON
----------------------------------------- */

#customer_login button.woocommerce-Button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 50px !important;
    margin: 0 !important;
    padding: 12px 20px !important;
    border: 0 !important;
    border-radius: 6px !important;
    background: #6d77b0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    transition: background .2s ease, transform .2s ease;
}

#customer_login button.woocommerce-Button:hover {
    background: #1cbbb4 !important;
    transform: translateY(-1px);
}

/* -----------------------------------------
   REMEMBER ME
----------------------------------------- */

#customer_login .woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    width: auto !important;
    margin: 14px 0 0 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    cursor: pointer;
}

#customer_login .woocommerce-form__input-checkbox {
    width: 15px !important;
    height: 15px !important;
    margin: 0 !important;
    accent-color: #b0060a;
}

/* -----------------------------------------
   LOST PASSWORD
----------------------------------------- */

#customer_login .lost_password {
    margin: 18px 0 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

#customer_login .lost_password a {
    color: #555 !important;
    font-size: 13px !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#customer_login .lost_password a:hover {
    color: #b0060a !important;
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 767px) {

    #customer_login {
        display: block !important;
        width: calc(100% - 30px) !important;
        max-width: none !important;
        margin: 20px auto 0 !important;

        /* Override shortcode background */
        background: #fff !important;
    }

    #customer_login .u-column1,
    #customer_login .u-column2 {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 32px 25px !important;
        box-sizing: border-box !important;
    }

    /* Change vertical divider to horizontal divider */
    #customer_login .u-column1 {
        border-right: 0 !important;
        border-bottom: 1px solid #e3e3e3 !important;
    }

    #customer_login h5 {
        margin-bottom: 22px !important;
        font-size: 20px !important;
    }

    #customer_login input.input-text {
        height: 48px !important;
    }

    #customer_login button.woocommerce-Button {
        min-height: 48px !important;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    #customer_login {
        width: calc(100% - 20px) !important;
    }

    #customer_login .u-column1,
    #customer_login .u-column2 {
        padding: 28px 20px !important;
    }

    #customer_login h5 {
        font-size: 19px !important;
    }
}

```css
/* =========================================
   WOOCOMMERCE FORM NOTICES / ERRORS
========================================= */

#customer_login + .woocommerce-notices-wrapper,
.woocommerce-notices-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 18px !important;
    box-sizing: border-box;
}


/* Error box */
.woocommerce-notices-wrapper .woocommerce-error {
    position: relative;

    display: flex !important;
    align-items: center !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 14px 18px 14px 46px !important;

    box-sizing: border-box !important;

    background: #fff5f5 !important;
    border: 1px solid #f0caca !important;
    border-radius: 7px !important;

    color: #8f2525 !important;

    font-size: 14px !important;
    line-height: 1.5 !important;

    box-shadow: none !important;
}


/* Remove WooCommerce's default decorative icon */
.woocommerce-notices-wrapper .woocommerce-error::before {
    content: "!" !important;

    position: absolute !important;
    left: 17px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 20px !important;
    height: 20px !important;

    border: 1.5px solid #b0060a !important;
    border-radius: 50% !important;

    color: #b0060a !important;

    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}


/* Error list item */
.woocommerce-notices-wrapper .woocommerce-error li {
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


/* "Error:" label */
.woocommerce-notices-wrapper .woocommerce-error strong {
    color: #8f2525 !important;
    font-weight: 600 !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    #customer_login + .woocommerce-notices-wrapper,
    .woocommerce-notices-wrapper {
        width: calc(100% - 30px);
        max-width: none;
        margin: 0 auto 15px !important;
    }

    .woocommerce-notices-wrapper .woocommerce-error {
        padding: 13px 15px 13px 43px !important;
        font-size: 13px !important;
    }

    .woocommerce-notices-wrapper .woocommerce-error::before {
        left: 15px !important;
    }
}


@media (max-width: 480px) {

    #customer_login + .woocommerce-notices-wrapper,
    .woocommerce-notices-wrapper {
        width: calc(100% - 20px);
    }
}
```



form.woocommerce-ResetPassword.lost_reset_password {
    margin: 0 auto !important;
    display: block;
}

```css
/* =========================================
   LOST PASSWORD FORM
========================================= */

form.woocommerce-ResetPassword.lost_reset_password {
    width: 100% !important;
    max-width: 650px !important;

    margin: 30px auto !important;
    padding: 40px 45px !important;

    box-sizing: border-box !important;

    background: #fff !important;

    border: 1px solid #e5e5e5 !important;
    border-radius: 12px !important;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
}


/* =========================================
   INTRO TEXT
========================================= */

form.woocommerce-ResetPassword.lost_reset_password > p:first-child {
    margin: 0 0 28px !important;
    padding: 0 !important;

    color: #444 !important;

    font-size: 15px !important;
    line-height: 1.7 !important;
}


/* =========================================
   FORM ROW
========================================= */

form.woocommerce-ResetPassword.lost_reset_password .form-row {
    width: 100% !important;

    margin: 0 0 20px !important;
    padding: 0 !important;

    float: none !important;
}


/* =========================================
   LABEL
========================================= */

form.woocommerce-ResetPassword.lost_reset_password label {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #333 !important;

    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
}


/* Required star */
form.woocommerce-ResetPassword.lost_reset_password .required {
    color: #6d77b0 !important;
}


/* =========================================
   INPUT
========================================= */

form.woocommerce-ResetPassword.lost_reset_password input.input-text {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    height: 50px !important;

    margin: 8px 0 0 !important;
    padding: 0 15px !important;

    box-sizing: border-box !important;

    border: 1px solid #d6d6d6 !important;
    border-radius: 6px !important;

    background: #fff !important;
    color: #222 !important;

    font-size: 15px !important;

    outline: none !important;
    box-shadow: none !important;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


/* Focus */
form.woocommerce-ResetPassword.lost_reset_password input.input-text:focus {
    border-color: #6d77b0 !important;

    box-shadow:
        0 0 0 3px rgba(109, 119, 176, 0.12) !important;
}


/* =========================================
   BUTTON
========================================= */

form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    min-height: 50px !important;

    margin: 0 !important;
    padding: 12px 20px !important;

    border: 0 !important;
    border-radius: 6px !important;

    background: #6d77b0 !important;
    color: #fff !important;

    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;

    cursor: pointer !important;

    transition:
        background .2s ease,
        transform .2s ease;
}


/* Hover */
form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button:hover {
    background: #1cbbb4 !important;

    transform: translateY(-1px);
}


/* =========================================
   CLEAR
========================================= */

form.woocommerce-ResetPassword.lost_reset_password .clear {
    clear: both !important;
    display: none !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    form.woocommerce-ResetPassword.lost_reset_password {
        width: calc(100% - 30px) !important;

        max-width: none !important;

        margin: 20px auto !important;

        padding: 32px 25px !important;

        border-radius: 10px !important;
    }


    form.woocommerce-ResetPassword.lost_reset_password > p:first-child {
        margin-bottom: 24px !important;

        font-size: 14px !important;
        line-height: 1.65 !important;
    }


    form.woocommerce-ResetPassword.lost_reset_password input.input-text {
        height: 48px !important;
    }


    form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button {
        min-height: 48px !important;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    form.woocommerce-ResetPassword.lost_reset_password {
        width: calc(100% - 20px) !important;

        padding: 28px 20px !important;
    }
}
```/* End custom CSS */