/*
 * Basic styling for the Custom Membership Plugin.
 *
 * This stylesheet adds a little bit of spacing and makes the forms and
 * dashboard more readable.  Site owners can override these styles in their
 * themes by adding higher‑specificity selectors or deregistering this style.
 */

.cmp-registration-form,
.cmp-login-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    border-radius: 4px;
}

.cmp-registration-form p,
.cmp-login-form p {
    margin-bottom: 15px;
}

.cmp-registration-form label,
.cmp-login-form label {
    font-weight: bold;
}

.cmp-registration-form input[type="text"],
.cmp-registration-form input[type="email"],
.cmp-registration-form input[type="password"],
.cmp-login-form input[type="text"],
.cmp-login-form input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cmp-dashboard {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
}