Hi
Add this to your custom css
@media only screen and (min-width: 769px) {
.woocommerce #account_details > .login, .my-account-login-wrap .login-wrap {
width: 50%;
}
}
To change the heading you need to edit: themes/dante/woocommerce/myaccount/form-login.php
35
36 <div class="login-wrap">
37: <h4 class="lined-heading"><span><?php _e( 'Registered customers', 'swiftframework' ); ?></span></h4>
38 <form method="post" class="login">
39
..
135
136 <div class="login-wrap">
137: <h4 class="lined-heading"><span><?php _e( 'Registered customers', 'swiftframework' ); ?></span></h4>
138 <form method="post" class="login">
139 <p class="form-row form-row-first">
– Kyle