/* Simple Member Login Styles */
.sml-login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sml-login-form {
    margin-bottom: 20px;
}

.sml-form-group {
    margin-bottom: 20px;
}

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

.sml-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.sml-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

.sml-remember {
    margin-bottom: 15px;
}

.sml-remember label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.sml-submit-button:hover {
    background: #005a87;
}

.sml-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sml-links {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.sml-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.sml-link:hover {
    text-decoration: underline;
}

.sml-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.sml-message.sml-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.sml-message.sml-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.sml-logged-in-message {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.sml-logged-in-message p {
    margin-bottom: 15px;
}

.sml-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.sml-button:hover {
    background: #005a87;
    color: #fff;
}

.sml-button.sml-logout {
    background: #dc3545;
}

.sml-button.sml-logout:hover {
    background: #c82333;
}