.woocommerce-account {
    #page-content-wrapper .row:first-of-type {
        background-color: var(--giallo-peck);
        padding-bottom: var(--gap80-to-56);
        padding-top: 0;

        nav {
            padding: 16px 0px;
            background-color: rgba(255, 255, 255, 0);
            margin-bottom: 40px;
            border-bottom: 1px solid black;

            ul {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                gap: 20px;

                a,
                a:visited,
                a:hover {
                    color: var(--marrone-peck);
                    text-decoration: none;
                    font-weight: 500;
                    font-size: 1rem;
                    font-weight: 600;
                    line-height: 1.5;
                    /* 150% */
                    letter-spacing: 0.02rem;
                }

                li:last-child {
                    margin-left: auto;
                }

                .woocommerce-MyAccount-navigation-link--downloads {
                    display: none;
                }
            }
        }
    }

    color: var(--marrone-peck);

    h1 {
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1.2;
    }

    .woocommerce {
        gap: 20px;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1.43;
        /* 142.857% */
        letter-spacing: 0.0175rem;

        a,
        a:visited,
        a:hover {
            color: var(--marrone-peck);
            text-decoration: underline;

        }

        p {
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 600;
            line-height: 1.43;
            /* 142.857% */
            letter-spacing: 0.0175rem;
        }

        .woocommerce-info {
            background-color: transparent;
        }

        .woocommerce-MyAccount-content {
            flex: 1 1 80%;

            fieldset {
                border: 1px solid black;
            }

            button[type="submit"] {
                background: var(--marrone-peck);
                border-radius: 0;
                font-weight: bold;
                cursor: pointer;
                color: var(--white, #FFF);
                font-size: 16px;
                font-style: normal;
                font-weight: 600;
                line-height: 24px;
                letter-spacing: 0.48px;
                text-transform: uppercase;
                display: inline-block;
                padding: 16px 24px;
                justify-content: center;
                text-decoration: none;
            }

            input[type="text"],
            input[type="email"],
            input[type="password"],
            input[type="tel"],
            input[type="number"],
            input[type="search"],
            textarea,
            select {
                width: 100%;
                padding: 16px;
                border: none;
                border-radius: 0;
                border-bottom: 1px solid var(--marrone-peck);
                color: var(--black, #000);
                font-size: 16px;
                font-style: normal;
                font-weight: 600;
                line-height: 24px;
            }

            input[type="text"]:focus,
            input[type="email"]:focus,
            input[type="password"]:focus,
            input[type="tel"]:focus,
            input[type="number"]:focus,
            input[type="search"]:focus,
            textarea:focus,
            select,
            select:focus {
                border-bottom: 2px solid var(--marrone-peck);
                outline: none;
            }

            .woocommerce-form-row {
                display: flex;
                flex-direction: column;
                gap: 16px;

                .woocommerce-form__label-for-checkbox {
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 24px;
                    letter-spacing: 0.48px;
                    text-transform: uppercase;
                    display: inline-block;
                    padding: 16px 24px;
                    justify-content: center;
                    text-decoration: none;
                }

                .woocommerce-form__input-checkbox {
                    display: none;
                }

                input[type="checkbox"] {
                    display: none;
                }
            }

            .password-input {
                position: relative;
            }

            .password-input .show-password-input {
                position: absolute;
                top: 50%;
                right: 16px;
                transform: translateY(-50%);
                background-image: url('../img/openeye.svg');
                background-color: transparent;
                background-size: contain;
                background-repeat: no-repeat;
                width: 24px;
                height: 24px;
                display: inline-block;
            }

            .password-input .show-password-input.display-password {
                background-image: url('../img/closedeye.svg');
            }

            #password_strength {
                text-align: left;
            }


            .entry-footer {
                display: none;
            }
        }
    }
}