/* --- BLM Account Manager Form Styles --- */

/* The main container for the forms */
.blm-form {
    max-width: 100%; /* Set a comfortable maximum width */
    margin: 20px; /* Center the form on the page */
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f9f9f9;
}

/* The paragraph that wraps each field */
.blm-form p {
    margin-bottom: 15px;
}

/* The labels (e.g., "Username", "Password") */
.blm-form label {
    display: block; /* Makes the label take up its own line */
    font-weight: bold; /* Makes the text bold */
    margin-bottom: 8px; /* Adds space between the label and the input field */
}

/* The text, email, and password input fields */
.blm-form input[type="text"],
.blm-form input[type="email"],
.blm-form input[type="tel"],
.blm-form input[type="password"] {
    width: 100%; /* Makes the field full-width */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't break the layout */
}

/* The submit button */
.blm-form button[type="submit"],
#loginform input[type="submit"] { /* Target the default WP Login form button too */
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #0073aa; /* A standard WordPress blue */
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.blm-form button[type="submit"]:hover,
#loginform input[type="submit"]:hover {
    background-color: #005a87;
}
/* --- Styling for the default WP Login Form --- */

/* This targets the form generated by wp_login_form() */
.blm-form-wrapper #loginform {
    max-width: 100%;
    margin: 0 20px 20px;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f9f9f9;
}

/* Style the labels inside the login form */
.blm-form-wrapper #loginform p label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Style the input fields */
.blm-form-wrapper #loginform input[type="text"],
.blm-form-wrapper #loginform input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Style the "Remember Me" checkbox */
.blm-form-wrapper .login-remember {
    font-weight: normal;
    display: inline-block;
    margin-top: 10px;
}
.blm-form-wrapper .login-remember input {
    width: auto;
    margin-right: 5px;
}

/* Style the submit button */
.blm-form-wrapper #loginform .login-submit input[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #0073aa;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.blm-form-wrapper #loginform .login-submit input[type="submit"]:hover {
    background-color: #005a87;
}

/* Style the "Lost Password" link */
.blm-form-wrapper #nav {
    margin-top: 15px;
    text-align: center;
}