.wp-memberly-restricted-content {
    padding: 20px;
    margin: 20px 0;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wp-memberly-restricted-content .login-message {
    margin-bottom: 15px;
}

.wp-memberly-restricted-content .login-button {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.wp-memberly-restricted-content .login-button:hover {
    background: #005177;
    color: #fff;
}

/* Registration Form Styles */
.memberly-registration-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.memberly-registration-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.memberly-registration-form .form-row {
    margin-bottom: 20px;
}

.memberly-registration-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.memberly-registration-form input,
.memberly-registration-form select,
.memberly-registration-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.memberly-registration-form input:focus,
.memberly-registration-form select:focus,
.memberly-registration-form textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

.memberly-registration-form textarea {
    resize: vertical;
    min-height: 80px;
}

.memberly-submit-btn {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.memberly-submit-btn:hover {
    background: #005177;
}

.memberly-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#memberly-message {
    margin-top: 20px;
}

.memberly-success {
    padding: 10px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.memberly-error {
    padding: 10px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

/* Dashboard Styles */
.memberly-dashboard {
    max-width: 800px;
    margin: 0 auto;
}

.memberly-dashboard h2 {
    margin-bottom: 25px;
}

.dashboard-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.dashboard-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.dashboard-card p {
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1.6;
}

.dashboard-card p:last-child {
    margin-bottom: 0;
}

.status-active {
    color: #46b450;
    font-weight: 600;
}

.status-expired {
    color: #dc3232;
    font-weight: 600;
} 