/* Style all text inputs and textareas within WP User Manager forms using wpum- classes */
.wpum-form input[type="text"],
.wpum-form input[type="number"],
.wpum-form input[type="email"],
.wpum-form input[type="password"],
.wpum-form select,
.wpum-form input[type="url"],
.wpum-form textarea {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.wpum-form input[type="file"] {
    font-family: inherit;
    font-size: 16px;
}

.wpum-form input[type="submit"] {
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--primary);
    font-family: inherit;
    font-size: 16px;
    height: 48px;
    padding: 8px;
    border-radius: 4px;
}


.wpum-form input:focus,
.wpum-form textarea:focus {
    border-color: var(--wp--preset--color--primary);
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
    outline: none;
}


.wpum-form label {
    font-weight: normal;
    color: var(--wp--preset--color--foreground);
    margin-bottom: 5px;
    display: block;
}

#wpum-account-forms-tabs ul li.active {
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--primary);
    text-decoration: none;
}

    #wpum-account-forms-tabs ul li.active a {
        color: var(--wp--preset--color--white);
    }


/*hide view profile tab/btn*/
/* Hide "View Profile" in WPUM account nav (adjust selector as needed) */
#wpum-account-forms-tabs li.tab-view {
    display: none !important;
}
