.members-in-login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.members-in-login-form {
    background: #ffffff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.members-in-login-form h3 {
    margin: 0 0 25px 0;
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

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

.members-in-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.members-in-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.members-in-form-group input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.members-in-submit-btn {
    width: 100%;
    padding: 12px 20px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.members-in-submit-btn:hover {
    background: #005a87;
}

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

.members-in-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

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

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

.members-in-loading {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive design */
@media (max-width: 480px) {
    .members-in-login-container {
        padding: 10px;
    }
    
    .members-in-login-form {
        padding: 20px;
    }
    
    .members-in-login-form h3 {
        font-size: 20px;
    }
} 